{
  "info": {
    "_postman_id": "0928d7cf-4034-404d-822d-0f6caf14aebe",
    "name": "(OAuth 2.0) Kahua Postman Collection v2.0",
    "description": "Welcome to the Kahua Postman Collection!\n\nBefore making any requests, read the description of the \"0: Getting Started\" folder. Most requests in this collection require Postman and Kahua to be configured in order to work properly, so please read _**ALL**_ of this section**.**\n\nIn addition, it is _**HIGHLY**_ recommended that you do _**NOT**_ use this collection in a persistent environment (e.g., Production or DevProduction) so that mistakes are not permanant. Instead, use an environment that resets like DevWeekly.\n\n# Prerequisites\n\nYou will need read/write access to the following within Kahua to use this collection:\n\n- Groups\n    \n- Domain Settings\n    \n    - Authentication\n        \n- Daily Reports\n    \n- File Manager\n    \n- Communications\n    \n- RFIs\n    \n- Contacts\n    \n- Locations\n    \n\n# Notation\n\nEach folder and request in this collection is assigned a numerical code. This exists so that requests can refer to another request or folder in a succinct manner. Each level of the folder/request tree in the collection is separated by a dot, and the number used denotes order that a folder/request appears in its parent. There are two exceptions to this rule: The number 0 denotes that a folder/request is trivial or exists for documentation purposes, and the number 99 is reserved for examples.\n\nWhile the Kahua API has dedicated requests for special types of data like Files and Contacts (see Sections 3 and 4.1), the most useful requests are the Ad-Hoc Query and Ad-Hoc Activity requests (see Sections 1 and 2 for more details). Unlike the other \"standard\" or \"basic\" requests, these two endpoints can read and write data from any app on the Kahua platform. They are infinitely more flexible than the requests in the other folders, and they are necessary to do things that the \"standard\" API endpoints cannot do (e.g., locking/unlocking a file does not have a dedicated API endpoint; see 3.1.11 and 3.1.12). Because of this, some of the \"basic\" request folders have queries and activities mixed in. But, due to the vast semantic differences between them and the \"standard\" requests (and most APIs in general), we prefix them with `(QRY)` and `(ACT)` respectively.\n\n# Current Versions\n\nThis collection was created using:\n\n- Postman v11.53.0\n    \n- Kahua 2025.3 (v1.9.51)\n    \n\nIf any part of the collection appears to be out of date, check the latest documentation:\n\n- [Postman Docs](https://learning.postman.com/docs/introduction/overview/)\n    \n- [Kahua Wiki](https://build.kahua.com)\n    \n\n# Terminology\n\n## Partitions\n\nOne important concept in Kahua and its API is the concept of a _partition_. A partition is the fundamental unit of organization within Kahua. Partitions are the equivalent of folders, and entities are equivalent to files. All entities have a `PartitionId` attribute that tells which partition that entity belongs to. There are also the `DomainPartitionId` (the ID of the domain partition the entity is in), `Partition` (the entity form of `PartitionId`), and `DomainPartition` (the entity form of `DomainPartitionId`) attributes, which give more information about where in the domain that entity lies.\n\nThere are four main types of partitions:\n\n- The Domain Root\n    \n    - Always has an ID of zero\n        \n    - Does not have an EntityDef associated with it\n        \n    - Is the root of the partition tree\n        \n    - Behaves like a Domain Partition\n        \n- Domain Partitions\n    \n    - EntityDef: `kahua_Core.kahua_DomainPartition`\n        \n    - Example: Projects (`kahua_Project.Project`)\n        \n- App Partitions\n    \n    - EntityDef: `kahua_Core.kahua_AppPartition`\n        \n    - Example: App Lists (`kahua_Core.kahua_AppList`)\n        \n        - RFIs App Construction/Pre-Construction lists\n            \n        - Recycle Bin App\n            \n- Sub Partitions\n    \n    - EntityDef: `kahua_Core.kahua_DomainSubPartition`\n        \n    - Example: Folders (`kahua_FileManager.Folder`)\n        \n\nThis is crucial to understand because using the incorrect partition ID can cause entities to become innaccessible from the host. For example, if you query for RFIs from the project partition, you will get nothing (without changing any scoping options, see 1.1.2 and 1.1.3) because RFIs are contained within app lists.\n\nIn addition, some requests accept the ID of any kind of partition regardless of what the URL may imply. Because of this, some requests may rename path parameters like `:projectId` to `:partitionId`.\n\n## v1 vs v2 Endpoints\n\nThe endpoints in the collection contain either a `/v1` or `/v2` within their URL. This signifies whether it is a version 1 (`v1`) or version 2 (`v2`) endpoint. Many endpoints have both `v1` and `v2` versions and both can be tested by swapping the `v1` in the URL with `v2` or vice versa. When possible, use the `v2` endpoint over the `v1` endpoint.\n\n# From XML to JSON\n\nWhile app definitions use XML, this API uses JSON. For requests in this collection that accept app definition components (e.g., ad-hoc queries and activites), converting from the XML form to the JSON form of those components can be done as follows:\n\n1. Convert XML tags (e.g., a `Query`, see Section 1) into JSON objects with a `PropertyName` field equal to the tag name (e.g., `{ \"PropertyName\": \"Query\" }`)\n    \n2. XML attributes with periods (e.g., `Partition.Scope=\"XYZ\"`, see 1.1.2 and 1.1.3) should be converted into JSON objects (e.g., `\"Partition\": { \"Scope\": \"XYZ\" }`)\n    \n3. If the XML tag has children that are \"named\" (e.g., the `Query.Condition` tag, see Section 1.2), then a field with the name excluding the prefix should be added to the JSON (e.g., `\"Condition\": { ... }`)\n    \n4. If the XML tag has children that are \"unnamed\" (e.g., an `AllOf` condition, see 1.2.2), then the children should be placed in an array field named `_children` (e.g., `\"_children\": [ ... ]`)",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "34512234"
  },
  "item": [
    {
      "name": "0: Getting Started",
      "item": [
        {
          "name": "0.1: Test OAuth",
          "event": [
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test(\"Status code is 200\", () => {\r",
                  "    pm.response.to.have.status(200);\r",
                  "});\r",
                  "pm.test(\"Request used OAuth 2.0\", () => {\r",
                  "    pm.expect(pm.request.auth.type).to.equal(\"oauth2\");\r",
                  "});"
                ],
                "type": "text/javascript",
                "packages": {},
                "requests": {}
              }
            }
          ],
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/0/info",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "v1",
                "domains",
                "{{domain}}",
                "projects",
                "0",
                "info"
              ]
            },
            "description": "Use this request to ensure that you have configured Kahua and Postman properly. See the description of the \"0: Getting Started\" folder for more information.\n\nIf you did everything properly, this should return the domain partition for the account you used to do the setup outlined in the \"0: Getting Started\" folder.\n\nAlso, the URL of this request should NOT have any placeholders (specified using double curly braces) for `envname` and `domain`."
          },
          "response": []
        },
        {
          "name": "0.2: Seed Kahua Environment",
          "event": [
            {
              "listen": "prerequest",
              "script": {
                "exec": [
                  ""
                ],
                "type": "text/javascript",
                "packages": {}
              }
            },
            {
              "listen": "test",
              "script": {
                "exec": [
                  "const KEY_ROOT_FOLDER = \"kpc-seed-root\";\r",
                  "const KEY_MARKER = \"kpc-seed-marker\";\r",
                  "const KEY_CONTACT_ID = \"kpc-seed-contact-id\";\r",
                  "const KEY_CONTACT_FIRST_NAME = \"kpc-seed-contact-firstName\";\r",
                  "const KEY_CONTACT_LAST_NAME = \"kpc-seed-contact-lastName\";\r",
                  "const KEY_CONTACT_EMAIL = \"kpc-seed-contact-email\";\r",
                  "const KEY_COMPANY = \"kpc-seed-company\";\r",
                  "const KEY_OFFICE = \"kpc-seed-office\";\r",
                  "\r",
                  "async function seed() {\r",
                  "    //\r",
                  "    // Get the project ID from the request.\r",
                  "    // This indirectly checks if they configured their Postman environment correctly.\r",
                  "    // Also, stop the user from using the domain root for {{project}}\r",
                  "    //\r",
                  "    log(\"INFO\", \"Ensuring project was configured property\");\r",
                  "    let [result, error] = tryTo(() => pm.response.json());\r",
                  "    pm.test(\"Verify Project Config\", () => {\r",
                  "        pm.expect(error, \"Has Error\").to.not.exist;\r",
                  "        pm.response.to.have.status(200);\r",
                  "        pm.expect(result?.id, \"Project Id != 0\").to.not.equal(0);\r",
                  "    });\r",
                  "    if (pm.response.code != 200 || !!error) {\r",
                  "        log(\"ERROR\", \"Failed to get project\");\r",
                  "        throw error;\r",
                  "    }\r",
                  "    const projectId = result.id;\r",
                  "    if (projectId == 0) {\r",
                  "        throw \"Do not set {{project}} to the domain root\"\r",
                  "    }\r",
                  "    log(\"INFO\", `Project ID = ${projectId}`);\r",
                  "\r",
                  "    //\r",
                  "    // Delete entities that were created last time\r",
                  "    //\r",
                  "    log(\"INFO\", \"Deleting old entities\");\r",
                  "    const OLD_DEFS = [\r",
                  "        \"kahua_AEC_DailyReport.DailyReport\",\r",
                  "        \"kahua_AEC_Communications.kahua_Communications\"\r",
                  "    ];\r",
                  "    [, error] = await tryToAsync(() => seedDeleteOld(projectId, OLD_DEFS));\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    const OLD_DOM_DEFS = [\r",
                  "        \"kahua_Location.Location\"\r",
                  "    ];\r",
                  "    [, error] = await tryToAsync(() => seedDeleteOld(0, OLD_DOM_DEFS, projectId));\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "\r",
                  "    //\r",
                  "    // Get a marker so we can delete entities when we rerun this script\r",
                  "    // \r",
                  "    log(\"INFO\", \"Getting marker (for future runs)\");\r",
                  "    [result, error] = await tryQuery(projectId, {\r",
                  "        \"PropertyName\": \"Query\",\r",
                  "        // See 1.4.1\r",
                  "        \"Take\": 1\r",
                  "    });\r",
                  "    pm.test(\"Get Marker\", () => {\r",
                  "        pm.expect(error).to.not.exist;\r",
                  "        pm.expect(result).to.haveOwnProperty(\"marker\");\r",
                  "    });\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    setVar(KEY_MARKER, result.marker);\r",
                  "\r",
                  "    //\r",
                  "    // Get a Contact along with its Company and their Company's Primary Office\r",
                  "    //\r",
                  "    [result, error] = await tryToAsync(seedContact);\r",
                  "    pm.test(\"Get Contact\", () => {\r",
                  "        pm.expect(error, \"Has Error\").to.not.exist;\r",
                  "        pm.expect(result, \"Has firstName\").to.haveOwnProperty(\"firstName\");\r",
                  "        pm.expect(result, \"Has lastName\").to.haveOwnProperty(\"lastName\");\r",
                  "        pm.expect(result, \"Has company\").to.haveOwnProperty(\"company\");\r",
                  "        pm.expect(result.company, \"Has company.id\").to.haveOwnProperty(\"id\");\r",
                  "        pm.expect(result.company, \"Has company.PrimaryOffice\").to.haveOwnProperty(\"PrimaryOffice\");\r",
                  "        pm.expect(result.company.PrimaryOffice, \"Has company.PrimaryOffice.id\").to.haveOwnProperty(\"id\");\r",
                  "    });\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    const contact = result;\r",
                  "    setVar(KEY_CONTACT_ID, contact.id);\r",
                  "    setVar(KEY_CONTACT_FIRST_NAME, contact.firstName);\r",
                  "    setVar(KEY_CONTACT_LAST_NAME, contact.lastName);\r",
                  "    setVar(KEY_CONTACT_EMAIL, contact.email);\r",
                  "    setVar(KEY_COMPANY, contact.company.id);\r",
                  "    setVar(KEY_OFFICE, contact.company.PrimaryOffice.id);\r",
                  "\r",
                  "    //\r",
                  "    // Create Files and Folders\r",
                  "    //\r",
                  "    [result, error] = await tryToAsync(() => seedRootFolder(projectId));\r",
                  "    pm.test(\"Create Root Folder\", () => {\r",
                  "        pm.expect(error, \"Has Error\").to.not.exist;\r",
                  "        pm.expect(result, \"Returned ID\").to.exist;\r",
                  "    });\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    const rootId = result;\r",
                  "    setVar(KEY_ROOT_FOLDER, rootId);\r",
                  "    [, error] = await tryToAsync(() => seedFolders(projectId, rootId));\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    [, error] = await tryToAsync(() => seedFiles(projectId, rootId, contact));\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "\r",
                  "    //\r",
                  "    // Create Entities\r",
                  "    //\r",
                  "    log(\"INFO\", \"Creating entities\");\r",
                  "    [, error] = await tryToAsync(() => seedCreateEntities(projectId));\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "\r",
                  "    //\r",
                  "    // MISC\r",
                  "    //\r",
                  "    setVar(\"kpc-seed-isoTime\", new Date().toISOString());\r",
                  "}\r",
                  "\r",
                  "async function seedCreateEntities(projectId) {\r",
                  "    const ENTITIES = [\r",
                  "        {\r",
                  "            key: \"kpc-seed-2.1.2-id\",\r",
                  "            app: \"kahua_AEC_DailyReport\",\r",
                  "            name: \"DailyReport\",\r",
                  "            attrs: {\r",
                  "                Notes: pm.variables.replaceIn(\"2.1.2 DR: {{$randomLoremSentence}}\")\r",
                  "            },\r",
                  "            directives: []\r",
                  "        },\r",
                  "        {\r",
                  "            key: \"kpc-seed-2.1.3-id\",\r",
                  "            app: \"kahua_AEC_DailyReport\",\r",
                  "            name: \"DailyReport\",\r",
                  "            attrs: {\r",
                  "                Notes: pm.variables.replaceIn(\"2.1.3 DR: {{$randomLoremSentence}}\")\r",
                  "            },\r",
                  "            directives: []\r",
                  "        },\r",
                  "        {\r",
                  "            key: \"kpc-seed-2.2.1-id\",\r",
                  "            app: \"kahua_AEC_DailyReport\",\r",
                  "            name: \"DailyReport\",\r",
                  "            attrs: {\r",
                  "                Notes: pm.variables.replaceIn(\"2.2.1 DR: {{$randomLoremSentence}}\")\r",
                  "            },\r",
                  "            directives: []\r",
                  "        },\r",
                  "        {\r",
                  "            key: \"kpc-seed-1.2.3-id\",\r",
                  "            app: \"kahua_AEC_Communications\",\r",
                  "            name: \"kahua_Communications\",\r",
                  "            attrs: {},\r",
                  "            directives: [\r",
                  "                {\r",
                  "                    \"PropertyName\": \"StepTo\",\r",
                  "                    \"Step\": \"StartTransmittal\"\r",
                  "                }\r",
                  "            ]\r",
                  "        },\r",
                  "        {\r",
                  "            key: null,\r",
                  "            app: \"kahua_Location\",\r",
                  "            name: \"Location\",\r",
                  "            attrs: {\r",
                  "                Name: \"KPC Seed Location\"\r",
                  "            }\r",
                  "        }\r",
                  "    ];\r",
                  "\r",
                  "    for (const { key, app, name, attrs, directives } of ENTITIES) {\r",
                  "        log(\"INFO\", `Creating ${name} Entity`);\r",
                  "        log(\"TRACE\", `Attributes = ${JSON.stringify(attrs)}`);\r",
                  "        const [result, error] = await tryActivity(projectId, app, {\r",
                  "            \"activity\": {\r",
                  "                \"PropertyName\": \"Activity\",\r",
                  "                \"Flow\": [\r",
                  "                    {\r",
                  "                        \"PropertyName\": \"Iterate\",\r",
                  "                        \"Set\": \"MySet\",\r",
                  "                        \"New\": {\r",
                  "                            \"Directives\": directives\r",
                  "                        }\r",
                  "                    }\r",
                  "                ]\r",
                  "            },\r",
                  "            \"sets\": [\r",
                  "                {\r",
                  "                    \"Name\": \"MySet\",\r",
                  "                    \"entities\": [\r",
                  "                        {\r",
                  "                            \"id\": 0,\r",
                  "                            \"entityDef\": `${app}.${name}`,\r",
                  "                            ...attrs\r",
                  "                        }\r",
                  "                    ]\r",
                  "                }\r",
                  "            ]\r",
                  "        });\r",
                  "        pm.test(`Create ${name} Entity`, () => {\r",
                  "            pm.expect(error, \"Has Error\").to.not.exist;\r",
                  "            pm.expect(result, \"Has Activity Response\").to.exist;\r",
                  "            pm.expect(result, \"Has sets\").to.haveOwnProperty(\"sets\");\r",
                  "            pm.expect(result.sets[0], \"Has set[0]\").to.exist;\r",
                  "            pm.expect(result.sets[0], \"Has set[0].entities\").to.haveOwnProperty(\"entities\");\r",
                  "            pm.expect(result.sets[0].entities[0], \"Has set[0].entities[0]\").to.exist;\r",
                  "            pm.expect(result.sets[0].entities[0], \"Has set[0].entities[0].id\").to.haveOwnProperty(\"id\");\r",
                  "        });\r",
                  "        if (!!error) {\r",
                  "            throw error;\r",
                  "        }\r",
                  "        const id = parseInt(result.sets?.[0]?.entities?.[0].id);\r",
                  "        if (!id) {\r",
                  "            throw \"Failed to create entity\";\r",
                  "        }\r",
                  "        if (!!key) {\r",
                  "            setVar(key, id);\r",
                  "        }\r",
                  "    }\r",
                  "}\r",
                  "\r",
                  "async function seedDeleteOld(projectId, defs, deleteFrom=null) {\r",
                  "    const marker = parseInt(`${pm.variables.get(KEY_MARKER)}` || \"0\");\r",
                  "    if (!marker) {\r",
                  "        log(\"INFO\", \"Marker missing, no entities to delete\");\r",
                  "        return;\r",
                  "    }\r",
                  "    log(\"INFO\", `Deleting entities after marker ${marker}`);\r",
                  "\r",
                  "    for (const def of defs) {\r",
                  "        log(\"INFO\", `Getting markers for entity ${def} in project ${projectId}`);\r",
                  "        const [app, name] = def.split('.');\r",
                  "\r",
                  "        let [result, error] = await tryRequest({\r",
                  "            url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/${projectId}/apps/${app}/entitydefs/${name}/markers/from/${marker}`),\r",
                  "            method: \"GET\"\r",
                  "        });\r",
                  "        pm.test(`Get ${def} Marker`, () => pm.expect(error, \"Has Error\").to.not.exist);\r",
                  "        if (!!error) {\r",
                  "            throw error;\r",
                  "        }\r",
                  "        result = result.markers.filter(x => x.domainPartitionId == projectId);\r",
                  "        log(\"TRACE\", `Found ${result.length} markers`);\r",
                  "\r",
                  "        let toDelete = new Set();\r",
                  "        result.filter(x => x.type == \"Add\").map(x => x.entityId).forEach(x => toDelete.add(x));\r",
                  "        result.filter(x => x.type == \"Delete\").map(x => x.entityId).forEach(x => toDelete.delete(x));\r",
                  "        toDelete = [...toDelete.values()];\r",
                  "\r",
                  "        if (toDelete.length < 1) {\r",
                  "            continue;\r",
                  "        }\r",
                  "\r",
                  "        log(\"INFO\", `Deleting ${toDelete.length} ${def} entities`);\r",
                  "        log(\"TRACE\", `Entities to delete: [${toDelete.join(\", \")}]`);\r",
                  "        [, error] = await tryActivity(deleteFrom != null ? deleteFrom : projectId, app, {\r",
                  "            \"activity\": {\r",
                  "                \"PropertyName\": \"Activity\",\r",
                  "                \"Flow\": [\r",
                  "                    {\r",
                  "                        \"PropertyName\": \"Iterate\",\r",
                  "                        \"Set\": \"MySet\",\r",
                  "                        \"Existing\": {\r",
                  "                            \"Directives\": [\r",
                  "                                {\r",
                  "                                    \"PropertyName\": \"Delete\"\r",
                  "                                }\r",
                  "                            ]\r",
                  "                        }\r",
                  "                    }\r",
                  "                ]\r",
                  "            },\r",
                  "            \"sets\": [\r",
                  "                {\r",
                  "                    \"Name\": \"MySet\",\r",
                  "                    \"entities\": toDelete.map(x => {\r",
                  "                        return {\r",
                  "                            id: x,\r",
                  "                            entityDef: def\r",
                  "                        };\r",
                  "                    })\r",
                  "                }\r",
                  "            ]\r",
                  "        });\r",
                  "        pm.test(`Delete old ${def} Entities`, () => pm.expect(error, \"Has Error\").to.not.exist);\r",
                  "        if (!!error) {\r",
                  "            throw error;\r",
                  "        }\r",
                  "    }\r",
                  "}\r",
                  "\r",
                  "async function seedFolders(projectId, rootId) {\r",
                  "    const fromVar = (key) => () => vars.find(x => x.key == key).value;\r",
                  "\r",
                  "    const FOLDERS = [\r",
                  "        // 3.2.x\r",
                  "        { key: \"kpc-seed-3.2.1-folder\", name: \"3.2.1 Folder\", parentFn: () => rootId },\r",
                  "        { key: \"kpc-seed-3.2.5-folder\", name: \"3.2.5 Folder\", parentFn: () => rootId },\r",
                  "        { key: \"kpc-seed-3.2.6-source\", name: \"3.2.6 Source\", parentFn: () => rootId },\r",
                  "        { key: \"kpc-seed-3.2.6-dest\", name: \"3.2.6 Destination\", parentFn: () => rootId },\r",
                  "        { key: \"kpc-seed-3.2.7-folder\", name: \"3.2.7 Folder\", parentFn: () => rootId },\r",
                  "        // 3.1.x\r",
                  "        { key: \"kpc-seed-3.1.5-dest\", name: \"3.1.5 Destination\", parentFn: () => rootId },\r",
                  "        { key: \"kpc-seed-3.1.6-dest\", name: \"3.1.6 Destination\", parentFn: () => rootId },\r",
                  "    ];\r",
                  "\r",
                  "    let result = null;\r",
                  "    let error = null;\r",
                  "\r",
                  "    for (const { key, name, parentFn } of FOLDERS) {\r",
                  "        const parent = parentFn();\r",
                  "        log(\"INFO\", `Created folder ${name} in ${parent}`);\r",
                  "        // See 3.2.4\r",
                  "        [result, error] = await tryRequest({\r",
                  "            url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/${projectId}/filemanager/folders/${parent}/addfolder/${name}`),\r",
                  "            method: \"POST\"\r",
                  "        });\r",
                  "        pm.test(`Create Folder ${name}`, () => {\r",
                  "            pm.expect(error, \"Has Error\").to.not.exist;\r",
                  "            pm.expect(result, \"Has entityId\").to.haveOwnProperty(\"entityId\");\r",
                  "        });\r",
                  "        if (!!error) {\r",
                  "            throw error;\r",
                  "        }\r",
                  "        log(\"INFO\", `Folder '${name}' ID = ${result.entityId}`);\r",
                  "        if (!!key) {\r",
                  "            setVar(key, result.entityId);\r",
                  "        }\r",
                  "    }\r",
                  "\r",
                  "    [result, error] = await tryRequest({\r",
                  "        url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/${projectId}/filemanager/folders/${rootId}/add/controlled/3.1.13 Destination`),\r",
                  "        method: \"POST\"\r",
                  "    });\r",
                  "    pm.test(`Create 3.1.13 Controlled Folder`, () => {\r",
                  "        pm.expect(error, \"Has Error\").to.not.exist;\r",
                  "        pm.expect(result, \"Has entityId\").to.haveOwnProperty(\"entityId\");\r",
                  "    });\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    log(\"INFO\", `3.1.13 Controlled Folder ID = ${result.entityId}`);\r",
                  "    setVar(\"kpc-seed-3.1.13-folder\", result.entityId);\r",
                  "}\r",
                  "\r",
                  "async function seedFiles(projectId, rootId, contact) {\r",
                  "    const LOREM_GEN = pm.variables.replaceIn.bind(null, \"{{$randomLoremParagraphs}}\");\r",
                  "    const fromVar = (key) => () => vars.find(x => x.key == key).value;\r",
                  "\r",
                  "    const FILES = [\r",
                  "        { key: \"kpc-seed-3.1.1-file\", name: \"3.1.1 File.txt\", parentFn: () => rootId, content: LOREM_GEN },\r",
                  "        { key: \"kpc-seed-3.1.4-file\", name: \"3.1.4 File.txt\", parentFn: () => rootId, content: LOREM_GEN },\r",
                  "        { key: \"kpc-seed-3.1.5-file\", name: \"3.1.5 File.txt\", parentFn: () => rootId, content: LOREM_GEN },\r",
                  "        { key: \"kpc-seed-3.1.6-file\", name: \"3.1.6 File.txt\", parentFn: () => rootId, content: LOREM_GEN },\r",
                  "        { key: \"kpc-seed-3.1.7-file\", name: \"3.1.7 File.txt\", parentFn: () => rootId, content: LOREM_GEN },\r",
                  "        { key: \"kpc-seed-3.1.9-fileA\", name: \"3.1.9 File A.txt\", parentFn: () => rootId, content: () => \"File A contents\\r\\n\" },\r",
                  "        { key: \"kpc-seed-3.1.9-fileB\", name: \"3.1.9 File B.txt\", parentFn: () => rootId, content: () => \"File B contents\\r\\n\" },\r",
                  "        { key: \"kpc-seed-3.1.10-file\", name: \"3.1.10 File.txt\", parentFn: () => rootId, content: LOREM_GEN }\r",
                  "    ];\r",
                  "\r",
                  "    let result = null;\r",
                  "    let error = null;\r",
                  "\r",
                  "    for (const { key, name, parentFn, content } of FILES) {\r",
                  "        const parent = parentFn();\r",
                  "        log(\"INFO\", `Creating file ${name} in ${parent}`);\r",
                  "        // See 3.1.8\r",
                  "        [result, error] = await tryRequest({\r",
                  "            url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/${projectId}/filemanager/folders/${parent}/addfile/${name}`),\r",
                  "            method: \"POST\",\r",
                  "            body: {\r",
                  "                mode: \"raw\",\r",
                  "                raw: content()\r",
                  "            },\r",
                  "            header: {\r",
                  "                \"Content-Type\": \"text/plain\"\r",
                  "            }\r",
                  "        });\r",
                  "        pm.test(`Create File ${name}`, () => {\r",
                  "            pm.expect(error, \"Has Error\").to.not.exist;\r",
                  "            pm.expect(result, \"Has entityId\").to.haveOwnProperty(\"entityId\");\r",
                  "        });\r",
                  "        if (!!error) {\r",
                  "            throw error;\r",
                  "        }\r",
                  "        log(\"INFO\", `File '${name}' ID = ${result.entityId}`);\r",
                  "        if (!!key) {\r",
                  "            setVar(key, result.entityId);\r",
                  "        }\r",
                  "    }\r",
                  "\r",
                  "    log(\"INFO\", \"Locking 3.1.10 file\");\r",
                  "    // See 3.1.12\r",
                  "    const date = new Date();\r",
                  "    const isPM = date.getUTCHours() >= 12;\r",
                  "    const month = date.getUTCMonth();\r",
                  "    const day = date.getUTCDate();\r",
                  "    const year = date.getUTCFullYear();\r",
                  "    const hour = date.getUTCHours() - (isPM ? 12 : 0);\r",
                  "    const minute = date.getUTCMinutes();\r",
                  "    const second = date.getUTCSeconds();\r",
                  "    const suffix = isPM ? \"PM\" : \"AM\";\r",
                  "\r",
                  "    const dateString = `${month}/${day}/${year} ${hour}:${minute}:${second} ${suffix}`;\r",
                  "    [result, error] = await tryActivity(projectId, \"kahua_FileManager\", {\r",
                  "        // See 2.1.2\r",
                  "        \"activity\": {\r",
                  "            \"PropertyName\": \"Activity\",\r",
                  "            \"Name\": \"Lock File\",\r",
                  "            \"Flow\": [\r",
                  "                {\r",
                  "                    \"PropertyName\": \"Iterate\",\r",
                  "                    \"Set\": \"MySet\",\r",
                  "                    \"Existing\": {}\r",
                  "                }\r",
                  "            ]\r",
                  "        },\r",
                  "        \"sets\": [\r",
                  "            {\r",
                  "                \"Name\": \"MySet\",\r",
                  "                \"entities\": [\r",
                  "                    {\r",
                  "                        \"id\": vars.find(x => x.key == \"kpc-seed-3.1.10-file\").value,\r",
                  "                        \"entityDef\": \"kahua_FileManager.File\",\r",
                  "                        \"LockKey\": `<State CreatedDateTime=\\\"${dateString}\\\" OwnerFirstName=\\\"{{${contact.firstName}}}\\\" OwnerLastName=\\\"{{${contact.lastName}}}\\\" PersonalDomainKey=\\\"{{${contact.Email}}}\\\" CurrentState=\\\"Locked\\\" />`\r",
                  "                    }\r",
                  "                ]\r",
                  "            }\r",
                  "        ]\r",
                  "    });\r",
                  "    pm.test(\"Lock 3.1.10 File\", () => pm.expect(error, \"Has Error\").to.not.exist);\r",
                  "    if (!!error) {\r",
                  "        log(\"WARN\", \"Failed to lock 3.1.10 file\");\r",
                  "    }\r",
                  "}\r",
                  "\r",
                  "async function seedContact() {\r",
                  "    log(\"INFO\", \"Getting a contact\");\r",
                  "    // See 4.1.1\r",
                  "    let [result, error] = await tryRequest({\r",
                  "        url: pm.variables.replaceIn(\"https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people\"),\r",
                  "        method: \"GET\"\r",
                  "    });\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    if (result.length < 1) {\r",
                  "        throw \"No contacts found. Try adding some using the Contacts app\";\r",
                  "    }\r",
                  "    const contact = result[Math.floor(Math.random() * result.length)];\r",
                  "    log(\"INFO\", `Contact ID = ${contact.id}`);\r",
                  "    log(\"INFO\", `Getting company ${contact.companyId}`);\r",
                  "    [result, error] = await tryQuery(0, {\r",
                  "        \"PropertyName\": \"Query\",\r",
                  "        \"EntityDef\": \"kahua_CompanyManager.kahua_Company\",\r",
                  "        // See 1.1.5\r",
                  "        \"EntityRange\": contact.companyId,\r",
                  "        \"Take\": 1,\r",
                  "        // See 1.3.2\r",
                  "        \"Explicits\": [\r",
                  "            {\r",
                  "                \"PropertyName\": \"Data\",\r",
                  "                \"Path\": \"PrimaryOffice\"\r",
                  "            }\r",
                  "        ]\r",
                  "    });\r",
                  "    if (!!error) {\r",
                  "        throw error;\r",
                  "    }\r",
                  "    if (result.entities.length < 1) {\r",
                  "        throw `Failed to get company info for contact '${contact.firstName} ${contact.lastName}' (${contact.email})`;\r",
                  "    }\r",
                  "\r",
                  "    return {\r",
                  "        ...contact,\r",
                  "        company: result.entities[0]\r",
                  "    };\r",
                  "}\r",
                  "\r",
                  "async function seedRootFolder(projectId) {\r",
                  "    log(\"INFO\", \"Checking for old folder\");\r",
                  "    let rootId = pm.collectionVariables.get(KEY_ROOT_FOLDER);\r",
                  "    let [result, error] = await tryRequest({\r",
                  "        url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/${projectId}/filemanager/folders/${rootId}/info`),\r",
                  "        method: \"GET\"\r",
                  "    });\r",
                  "    if (!error) {\r",
                  "        log(\"INFO\", \"Old folder found, checking for locked files\");\r",
                  "        [result, error] = await tryQuery(rootId, {\r",
                  "            \"PropertyName\": \"Query\",\r",
                  "            \"EntityDef\": \"kahua_FileManager.File\",\r",
                  "            \"Partition\": {\r",
                  "                // See 1.1.3\r",
                  "                \"IncludeChildSubPartitions\": true\r",
                  "            },\r",
                  "            \"Condition\": [\r",
                  "                // See 1.2.1\r",
                  "                {\r",
                  "                    \"PropertyName\": \"Data\",\r",
                  "                    \"Type\": \"HasValue\",\r",
                  "                    \"Path\": \"LockKey\" // See 3.1.10, 3.1.11, and 3.1.12\r",
                  "                }\r",
                  "            ],\r",
                  "            // See 1.4.2\r",
                  "            \"TakeAll\": true\r",
                  "        });\r",
                  "        if (!!error) {\r",
                  "            log(\"WARN\", \"Failed to query for locked files in root folder\");\r",
                  "        } else if (result.entities.length > 0) {\r",
                  "            log(\"INFO\", `Found ${result.entities.length} locked files`);\r",
                  "            log(\"TRACE\", `Locked files: ${result.entities.map(x => x.ShortLabel)}`);\r",
                  "            const locked = result.entities.map(x => { return { id: x.id, entityDef: x.entityDef }; });\r",
                  "            [result, error] = await tryActivity(projectId, \"kahua_FileManager\", {\r",
                  "                // See 2.1.4 and 3.1.11\r",
                  "                \"activity\": {\r",
                  "                    \"PropertyName\": \"Activity\",\r",
                  "                    \"Flow\": [\r",
                  "                        {\r",
                  "                            \"PropertyName\": \"Iterate\",\r",
                  "                            \"Set\": \"MySet\",\r",
                  "                            \"Existing\": {\r",
                  "                                \"Directives\": [\r",
                  "                                    {\r",
                  "                                        \"PropertyName\": \"Map\",\r",
                  "                                        \"Assignments\": [\r",
                  "                                            {\r",
                  "                                                \"PropertyName\": \"Empty\",\r",
                  "                                                \"To\": \"LockKey\"\r",
                  "                                            }\r",
                  "                                        ]\r",
                  "                                    }\r",
                  "                                ]\r",
                  "                            }\r",
                  "                        }\r",
                  "                    ]\r",
                  "                },\r",
                  "                \"sets\": [\r",
                  "                    {\r",
                  "                        \"Name\": \"MySet\",\r",
                  "                        \"entities\": locked\r",
                  "                    }\r",
                  "                ]\r",
                  "            });\r",
                  "\r",
                  "            if (!!error) {\r",
                  "                log(\"WARN\", \"Failed to delete locked files\");\r",
                  "            }\r",
                  "        }\r",
                  "\r",
                  "        log(\"INFO\", \"Deleting old folder\");\r",
                  "        // See 3.2.7\r",
                  "        [result, error] = await tryRequest({\r",
                  "            url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/${projectId}/filemanager/folders/${rootId}/delete`),\r",
                  "            method: \"POST\"\r",
                  "        });\r",
                  "        if (!!error) {\r",
                  "            log(\"ERROR\", \"Failed to delete old folder\");\r",
                  "            console.log(error);\r",
                  "            throw error;\r",
                  "        }\r",
                  "    }\r",
                  "\r",
                  "    log(\"INFO\", \"Creating root folder\");\r",
                  "    // See 3.2.4\r",
                  "    [result, error] = await tryRequest({\r",
                  "        url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/${projectId}/filemanager/folders/${projectId}/addfolder/Kahua Postman Collection`),\r",
                  "        method: \"POST\"\r",
                  "    });\r",
                  "    if (!!error) {\r",
                  "        log(\"ERROR\", \"Failed to create root folder\");\r",
                  "        throw error;\r",
                  "    }\r",
                  "    log(\"INFO\", `Root folder ID = ${result.entityId}`);\r",
                  "    return result.entityId;\r",
                  "}\r",
                  "\r",
                  "async function tryActivity(partition, app, a) {\r",
                  "    return await tryRequest({\r",
                  "        url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/${partition}/apps/${app}/activities/run`),\r",
                  "        method: \"POST\",\r",
                  "        body: {\r",
                  "            mode: \"raw\",\r",
                  "            raw: JSON.stringify(a)\r",
                  "        }\r",
                  "    });\r",
                  "}\r",
                  "\r",
                  "async function tryQuery(partition, q) {\r",
                  "    return await tryRequest({\r",
                  "        url: pm.variables.replaceIn(`https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/${partition}/query`),\r",
                  "        method: \"POST\",\r",
                  "        body: {\r",
                  "            mode: \"raw\",\r",
                  "            raw: JSON.stringify(q)\r",
                  "        }\r",
                  "    });\r",
                  "}\r",
                  "\r",
                  "var messages = [];\r",
                  "function log(level, value) {\r",
                  "    console.log(`[0.2/${level}] ${value}`);\r",
                  "    messages.push({ level, value });\r",
                  "}\r",
                  "\r",
                  "var vars = [];\r",
                  "function setVar(key, value) {\r",
                  "    log(\"TRACE\", `Setting collection variable ${key} to ${value}`);\r",
                  "    vars.push({ key, value });\r",
                  "}\r",
                  "\r",
                  "function tryTo(f) {\r",
                  "    try {\r",
                  "        return [f(), null];\r",
                  "    } catch (e) {\r",
                  "        return [null, e];\r",
                  "    }\r",
                  "}\r",
                  "\r",
                  "async function tryToAsync(f) {\r",
                  "    try {\r",
                  "        return [await f(), null];\r",
                  "    } catch (e) {\r",
                  "        return [null, e];\r",
                  "    }\r",
                  "}\r",
                  "\r",
                  "async function tryRequest(args) {\r",
                  "    return tryToAsync(async () => {\r",
                  "        log(\"TRACE\", `Sending ${args.method} ${args.url}`);\r",
                  "        const r = await pm.sendRequest({\r",
                  "            url: args.url,\r",
                  "            method: args.method,\r",
                  "            header: {\r",
                  "                \"Authorization\": pm.request.headers.get(\"Authorization\"),\r",
                  "                \"Accept\": \"*/*\",\r",
                  "                \"Content-Type\": \"application/json\",\r",
                  "                ...(args.header || {})\r",
                  "            },\r",
                  "            body: args.body\r",
                  "        });\r",
                  "        if (r.code != 200) {\r",
                  "            throw { endpoint: `${args.method} ${args.url}`, code: r.code, message: tryTo(() => r.text())[0] || \"\" };\r",
                  "        }\r",
                  "        const type = r.headers.get(\"Content-Type\");\r",
                  "        return (!!type && type.startsWith(\"application/json\")) ? r.json() : r.text();\r",
                  "    });\r",
                  "}\r",
                  "\r",
                  "const [_, seedError] = await tryToAsync(seed);\r",
                  "pm.test(\"Seed Completed Gracefully\", () => pm.expect(seedError, \"Has Error\").to.not.exist);\r",
                  "if (!!seedError) {\r",
                  "    const [j, _] = tryTo(() => JSON.stringify(seedError));\r",
                  "    log(\"ERROR\", `Seeding Failed: ${!!j ? j : seedError}`);\r",
                  "} else {\r",
                  "    log(\"INFO\", \"Seeding Succeeded!\");\r",
                  "}\r",
                  "for (const { key, value } of vars) {\r",
                  "    log(\"TRACE\", `Saved collection variable ${key}`);\r",
                  "    pm.collectionVariables.set(key, value);\r",
                  "}\r",
                  "\r",
                  "const template = `\r",
                  "<style>\r",
                  "    ul.list {\r",
                  "        --pad: 1em;\r",
                  "        padding: var(--pad);\r",
                  "        width: calc(100% - (2 * var(--pad)));\r",
                  "        background-color: black;\r",
                  "    }\r",
                  "    span.toggles {\r",
                  "        font-family: monospace;\r",
                  "        color: white;\r",
                  "    }\r",
                  "    li {\r",
                  "        font-family: monospace;\r",
                  "        list-style: none;\r",
                  "        margin: 0;\r",
                  "        max-width: 100%;\r",
                  "        word-wrap: break-word;\r",
                  "    }\r",
                  "    .ERROR { color: red; }\r",
                  "    .WARN { color: yellow; }\r",
                  "    .INFO { color: white; }\r",
                  "    .TRACE { color: gray; }\r",
                  "    span.toggles:has(> input.TRACE:not(:checked)) + ul.list > li.TRACE {\r",
                  "        display: none;\r",
                  "    }\r",
                  "</style>\r",
                  "<span class=\"toggles\">\r",
                  "    <input class=\"TRACE\" type=\"checkbox\" ${!!seedError ? \"checked\" : \"\"} />\r",
                  "    <span>Enable Trace</span>\r",
                  "</span>\r",
                  "<ul class=\"list\">\r",
                  "    <li class=\"INFO\">Completed with {{errors}} errors and {{warns}} warnings</li>\r",
                  "    <br />\r",
                  "    {{#each message}}\r",
                  "        <li class=\"{{level}}\">[{{level}}] {{value}}</li>\r",
                  "    {{/each}}\r",
                  "</ul>\r",
                  "`;\r",
                  "\r",
                  "pm.visualizer.set(template, {\r",
                  "    message: messages,\r",
                  "    errors: messages.reduce((t, m) => t + (m.level == \"ERROR\" ? 1 : 0), 0),\r",
                  "    warns: messages.reduce((t, m) => t + (m.level == \"WARN\" ? 1 : 0), 0)\r",
                  "});"
                ],
                "type": "text/javascript",
                "packages": {}
              }
            }
          ],
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/{{project}}/info",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "v1",
                "domains",
                "{{domain}}",
                "projects",
                "{{project}}",
                "info"
              ]
            },
            "description": "This request should return basic information about the project you created as part of the instructions in the \"0: Getting Started Section.\" This request has a post-request script that initalizes Kahua with test data. The script makes many requests, so it may take some time to run. In addition, the \"Visualize\" button in the Body tab of the response will show a log once the script is complete.\n\nThe script uses the Kahua API to create the test data. Feel free to read it as an example of how to use the API.\n\n> _**NOTE**_: There are some requests in this collection that manipulate domain-scoped data (e.g., Section 4). This script does not touch domain-scoped data to avoid leaking data outside of the test project you created"
          },
          "response": []
        }
      ],
      "description": "Before using this collection, Postman and your Kahua environment need to be configured. This section details how to:\n\n1. Configure OAuth 2.0\n    \n2. Seed (fill) your Kahua environment with test data\n    \n\n# Part 1: Enable API Access\n\nTo enable API access for your Kahua account, do the following:\n\n1. Open Kahua in the environment you would like to use the API in\n    \n2. If you are inside of a project, navigate out of it to the root of your domain\n    \n3. Run the \"Groups\" app\n    \n4. Select the \"API User\" group\n    \n5. In the drop down under \"Type names of people to add,\" select yourself\n    \n6. Click the \"Add\" button\n    \n\n# Part 2: Enable OAuth 2.0\n\n> _**NOTE**_: OAuth 2.0 is required to use the Kahua API in the Production environment. However, you may use Basic authentication for any DevX environments \n  \n\nTo enable OAuth 2.0 for your Kahua account, do the following:\n\n1. Open Kahua in the same environment used in Part 1\n    \n2. Run the \"Configuration\" app\n    \n3. Go to the \"Authorization\" tab\n    \n4. Under the \"Authorization\" tab, go to the \"Inbound\" tab (if it is not selected by default)\n    \n5. Select your user account\n    \n6. In the \"Inbound Credentials\" window that opened, select \"Override\"\n    \n7. Ensure that the \"OAuth 2.0\" checkbox is checked\n    \n8. Write down the Client Id and Client Secret. _**NEVER**_ share the Client Secret. **If you cannot see the Client Secret, use the \"Regenerate Client Secret\" button to reset it**\n    \n9. Click \"Save\"\n    \n\n# Part 3: Configure Postman\n\nTo configure OAuth 2.0 authentication in Postman, do the following:\n\n1. In Postman, open the Vault using `Control+Shift+V` or clicking the \"Vault\" button in the right side of the footer\n    \n2. Add two values named `clientid` and `clientsecret` (no caps or spaces), set their values to the Client Id and Client Secret you obtained from Part 2 step 8\n    \n3. Select \"Environments\" from the sidebar\n    \n4. Click the plus to create an environment\n    \n5. Create 2 variables named `envname` and `domain` (no caps or spaces). `envname` should be the URL prefix for the environment you used in Parts 1 and 2 (see table below). `domain` should be your Domain Key, which can be copied from Kahua in \"Domain Settings > Authentication\" app.\n    \n6. Click \"Save\"\n    \n7. In Postman, ensure your new environment is selected, which can be done by using the dropdown at the top right of the window\n    \n8. Generate a new OAuth 2.0 access token:\n    \n    1. Select the Kahua Postman Collection in the \"Collections\" tab of the sidebar\n        \n    2. Go to the \"Authorization\" tab\n        \n    3. Scroll to the bottom of the page and click on the button \"Get New Access Token\"\n        \n    4. If the previous steps were done correctly, it should say \"Authorization Complete\" soon after clicking the button and give you the option to proceed. If this does not occur then go back to Part 1 and make sure you've done all the previous steps correctly.\n        \n    5. It should show that you have a new token called \"Kahua OAuth 2.0 Token\". Make sure this new token is selected and click the \"Use Token\" button.\n        \n    6. The Token field near the top of the \"Authorization\" page should now be filled with the name \"Kahau OAuth 2.0 Token\" and the actual token should fill the field beneath that.\n        \n\nIf you did everything properly, you should see the correct values below instead of a placeholder (specified in curly braces):\n\n- `envname` is equal to \"{{envname}}\"\n    \n- `domain` is equal to \"{{domain}}\"\n    \n- To test `clientid` and `clientsecret`, use the \"0.1: Test OAuth\" endpoint below to ensure your are authenticated\n    \n\nHere are some common DevX environments that can be used:\n\n| **`envname`** | **Platform Code Refresh Cycle** | **App and Code Versions** | **Data Refresh Cycle** | **When to Use** |\n| --- | --- | --- | --- | --- |\n| `devdiagnostics` | Saturdays | Release repo | Each major release | Used in conjunction with kBuilder diagnostics. Due to the overhead of diagnostics, it is not recommended to be used when not actively using kBuilder diagnostics. |\n| `devmain` | Every Weekday | Release repo, current release code | Every Weekday | Test with latest release candidate. |\n| `devnext` | Daily | Release repo, current release code | Daily | Test with beta features from upcoming feature release |\n| `devproduction` | Saturdays | Release repo, current release code | Never | To seed data for use in downstream environments |\n| `devrelease` | Saturdays | Current release branch | Each major release | UAT testing when data needs to have a longer lifespan than daily or weekly resets |\n| `devsandbox` | Mondays | Current Release branch | Mondays | Test with current production apps |\n| `devupdate` | Daily | Next release repo, next release code | Daily | Test with latest patches |\n| `devweekly` | Mondays | Current release branch | Mondays | Same as DevMain, but used when data needs to persist longer than a day |\n\nFor more information on environments: [App Development Process | Kahua Wiki](https://build.kahua.com/en/Partners/kBuilder/AppDevelopmentProcess)\n\n# Part 4: Test Authentication\n\nFinally, use the \"0.1: Test OAuth\" endpoint below and ensure you get a `200 OK` response.\n\n## Authentication Troubleshooting\n\n### Environment Resets\n\nIf the environment you have setup authentication in gets reset, you will need to redo the authentication setup.\n\n### Manually Refresh your Token\n\nOAuth tokens expire after a certain amount of time, and need to be refreshed periodically to stay authenticated. Postman _should_ do this for you, but here is how to manually refresh your token just in case:\n\n1. Select the Kahua Postman Collection in the \"Collections\" tab of the sidebar\n    \n2. Go to the \"Authorization\" tab\n    \n3. Find the label that says \"Expires at ____\" and click the \"Refresh\" link next to it.\n    \n\n### Double Check your Kahua Environment\n\nEnsure that the Kahua environment you are sending request to is the same one you obtained the Client Id and Client Secret from. To obtain a new Client Id and Client Secret, see Parts 2 and 3 above.\n\nIf you make any changes to the `clientid` and `clientsecret` variables in your vault, you may need to manually refresh your token (see above) before trying again.\n\n### Double Check your Postman Environment\n\nEnsure that the Postman environment you created in Part 3 is selected. See Part 3 step 7.\n\nIf you did this correctly, the `envname` and `domain` placeholders (specified in double curly braces) of any request's URL should be highlighted blue (instead of red).\n\n### Double Check your Postman Vault\n\nEnsure that the `clientid` and `clientsecret` variables in your vault are named properly and have the proper values. See Part 3 step 2.\n\nIf you make any changes to those variables in your vault, you may need to manually refresh your token (see above) before trying again.\n\n# Part 5: Setup Kahua Data\n\nAfter successfully configuring OAuth 2.0, your Kahua environment needs to have test data inserted. Since some requests require an ID of an entity, they cannot be hardcoded into this collection.\n\nNext, create a project in Kahua for the test data to go into:\n\n1. In Kahua, Click your profile in the top right of the screen\n    \n2. Select \"Diagnostics\"\n    \n3. At the bottom of the screen, find and check the \"Live Entity\" checkbox\n    \n4. Open the \"Project Finder\" app\n    \n5. Select the \"New\" button and create a project\n    \n6. In the project list, click the encircled \"i\" to the right of the new project's name\n    \n7. In the Live Entity View on the right of the project information, find the `Id` field\n    \n8. Copy the value of `Id`. You may need to use the scrollbar at the bottom of the Live Entity View to see the value. You may also use the search box at the top of the Live Entity View to search for `Id`\n    \n9. In Postman, select the \"Environments\" tab from the sidebar\n    \n10. Select the environment you created in part 3\n    \n11. Add a new variable, `project`. Set `project`'s value to the `Id` you copied in step 8\n    \n\nIf you did everything correctly, the following should have the `Id` of the project instead of a placeholder value: {{project}}\n\nLastly, use the \"0.2: Seed Kahua Environment\" request to initalize the project with test data.\n\n> If you want to reset the test data, rerun 0.2 to delete and recreate it. \n  \n\nAfter running 0.2, ensure that all the script tests pass. Note that due to limitations with Postman scripting, the data is created in the post request script, so the tests don't show up until _after_ the request finishes. Please wait until no more tests show up, and that they are all passing.\n\n> **WARNING**: Please only use the requests in this collection to manipulate the data in the test project. Not doing so can cause the variables saved into Postman to get out of sync with Kahua, which can break the requests and scripts in this collection. \n  \n\n## Manually Reset Test Data\n\nIf some requests stop working, try resetting the test data.\n\nFirst, reset the data in Postman:\n\n1. Select the Kahua Postman Collection in the sidebar\n    \n2. Go to the \"Variables\" tab\n    \n3. Delete all of the variables.\n    \n\nNext, reset the data in Kahua:\n\n1. Go to the File Manager App\n    \n2. Delete the \"Kahua Postman Collection\" folder. _**If it won't delete, make sure none of the files are locked**_\n    \n3. Go to the Daily Reports App\n    \n4. Delete all the Daily Reports\n    \n5. Go to the Communications App\n    \n6. Delete all the Communications\n    \n7. Go to the RFIs App, in the \"Construction\" list\n    \n8. Delete all the RFIs\n    \n\nLastly, rerun 0.2 to reset the data in Kahua and Postman to a valid state.\n\nIf that does not work, delete the test project and create a new one. See the instructions in Part 5."
    },
    {
      "name": "1: Queries",
      "item": [
        {
          "name": "1.1: Basic Ad-Hoc Queries",
          "item": [
            {
              "name": "1.1.1: Basic Query",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "This is a basic query that by default returns up to 100 entities of a given type, specified by the `EntityDef` field in the body. For ad-hoc queries, the `PropertyName` field should be `Query.`\n\n**Example:**\n\nThis query returns up to 100 entities of type `kahua_AEC_DailyReport.DailyReport`."
              },
              "response": [
                {
                  "name": "Get Daily Reports",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "3432"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:27:23 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 50938063,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"Date\": \"2025-07-22T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-22T17:23:53.987\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50938063,\n            \"InstanceId\": 50938063,\n            \"Number\": \"0064\",\n            \"Notes\": \"2.2.1 DR: Eligendi ut vel asperiores commodi illo.\",\n            \"LongLabel\": \"Daily Report: 7/22/2025\",\n            \"DetailLabel\": \"Daily Report: 7/22/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/22/2025\",\n            \"ShortLabel\": \"Daily Report: 7/22/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0064 \",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50938062,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"Date\": \"2025-07-22T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-22T17:23:53.890\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50938062,\n            \"InstanceId\": 50938062,\n            \"Number\": \"0063\",\n            \"Notes\": \"2.1.3 DR: Voluptates nihil nulla deserunt et ut vero voluptates.\",\n            \"LongLabel\": \"Daily Report: 7/22/2025\",\n            \"DetailLabel\": \"Daily Report: 7/22/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/22/2025\",\n            \"ShortLabel\": \"Daily Report: 7/22/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0063 \",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50938061,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"MarkupEnabled\": false,\n            \"Date\": \"2025-07-22T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-22T17:23:53.797\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"CompanyCount\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"Instance\": 1,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50938061,\n            \"InstanceId\": 50938061,\n            \"Number\": \"0062\",\n            \"Notes\": \"2.1.2 DR: Qui voluptate ipsum omnis mollitia.\",\n            \"LongLabel\": \"Daily Report: 7/22/2025\",\n            \"DetailLabel\": \"Daily Report: 7/22/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/22/2025\",\n            \"ShortLabel\": \"Daily Report: 7/22/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0062 \",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56351979\n}"
                }
              ]
            },
            {
              "name": "1.1.2: Basic Scoping",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{Project}}"
                    }
                  ]
                },
                "description": "By default, queries are run relative to the partition specified by `:partitionId`. This behavior can be changed using the `Scope` field of the query's `Partition` object (see 1.1.3 for `Partition`'s other fields).\n\nThe `Scope` field can be one of the following (assuming none of the fields from 1.1.3 are used):\n\n- `Partition` (default): Query from the current partition\n    \n- `Domain`: Query from the root of the domain\n    \n- `DomainPartition`: Query from the root of the first domain partition that is at or above `:partitionId`. Because of this, `DomainPartition` will behave identically to `Partition` if `:partitionId` points to the root of the domain or the root of a domain partition and identically to `Domain` if `:partitionId` points to a partition that is not inside of any domain partition\n    \n- `Any`: Query from all partitions in the domain\n    \n\n**Example:**\n\nThis query returns entities of type `kahua_PeopleManager.kahua_Contact`. Because contacts are domain-scoped (i.e. there are no project-specific contacts), setting `Scope` to `Partition` or `DomainPartition` will return no entities."
              },
              "response": [
                {
                  "name": "Get Contacts",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "2653"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "31"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:30:29 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50921785,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsDomainUser\": false,\n            \"IsEmployee\": false,\n            \"IsDomainAdmin\": true,\n            \"IsInSyncWithCommunity\": true,\n            \"IsPublished\": true,\n            \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n            \"ModifiedDateTime\": \"2025-07-16T17:54:47.443\",\n            \"CreatedDateTime\": \"2025-07-16T17:54:47.443\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"PortableViewInstance\": 1,\n            \"Id\": 50921785,\n            \"InstanceId\": 50921785,\n            \"EmailAddress\": \"bbuckley@kahua.com\",\n            \"FirstName\": \"Brandon\",\n            \"LastName\": \"Buckley\",\n            \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n            \"SourceApp\": \"kahua_PeopleManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n            \"ContactFullNameLabel\": \"Brandon Buckley\",\n            \"ShortLabel\": \"Brandon Buckley\",\n            \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n            \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n            \"DetailLabel\": \"Name: Brandon Buckley\",\n            \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n            \"ProfilePhoto\": {\n                \"identifier\": \"50921785-50921787\",\n                \"name\": \"default_profile_photo.png\"\n            },\n            \"Company\": {\n                \"id\": 49709785,\n                \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"Office\": {\n                \"id\": 49709783,\n                \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 49709788,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"IsEmployee\": false,\n            \"MarkupEnabled\": false,\n            \"IsDomainUser\": true,\n            \"IsInSyncWithCommunity\": true,\n            \"IsPublished\": true,\n            \"IsDomainAdmin\": true,\n            \"CreatedDateTime\": \"2025-05-19T17:53:13.710\",\n            \"ModifiedDateTime\": \"2025-05-19T17:53:13.977\",\n            \"PartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 3,\n            \"Id\": 49709788,\n            \"InstanceId\": 49709797,\n            \"EmailAddress\": \"kahuaappdev@gmail.com\",\n            \"FirstName\": \"App\",\n            \"LastName\": \"Dev\",\n            \"PersonId\": \"77558b3f-78a4-4b9c-989d-1f49aa150c25\",\n            \"SourceApp\": \"kahua_PeopleManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"ContactCompanyLabel\": \"App Dev - BBuckleyCo\",\n            \"ContactFullNameLabel\": \"App Dev\",\n            \"ShortLabel\": \"App Dev\",\n            \"CompanyContactLabel\": \"BBuckleyCo - App Dev\",\n            \"LongLabel\": \"App Dev (kahuaappdev@gmail.com)\",\n            \"DetailLabel\": \"Name: App Dev\",\n            \"FullTextIndexContent\": \"App Dev BBuckleyCo\",\n            \"ProfilePhoto\": {\n                \"identifier\": \"49709788-49709793\",\n                \"name\": \"default_profile_photo.png\"\n            },\n            \"Company\": {\n                \"id\": 49709785,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Office\": {\n                \"id\": 49709783,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354859\n}"
                }
              ]
            },
            {
              "name": "1.1.3: Advanced Scoping",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_FileManager.Folder\",\r\n    \"Partition\": {\r\n        \"IncludeChildSubPartitions\": true\r\n    },\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"ShortLabel\"\r\n        },\r\n        {\r\n            \"Path\": \"PartitionId\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "In addition to the `Scope` field (see 1.1.2), the `Partition` object accepts other parameters to change which partitions are included, including the following:\n\n- `Id`: The ID of a partition to query against (for ad-hoc queries, this value is always set to `:partitionId` from the URL, regardless of what is specified in the request body)\n    \n- `Range`: A comma-separated list of partition IDs to query against.\n    \n- `IncludeChildDomainPartitions`: Include child domain partitions (subprojects) in the result of the query (if applicable, see below)\n    \n- `IncludeChildSubPartitions`: Include child sub partitions (folders) in the result of the query (if applicable, see below)\n    \n- `IncludeChildAppPartitions`: Include child app partitions (app lists) in the result of the query (if applicable, see below)\n    \n- `IncludeChildPartitionsInRange`: Query from the partitions in `Range` instead of `Id` (if applicable, see below)\n    \n- `ChildAppPartitionsAppName`: If this is specified and `IncludeChildAppPartitions` is enabled, only include app partitions from this app\n    \n- See Section 1.99: Examples to see more of these parameters in use\n    \n\n# Scoping Rules\n\nThere are three separate rules used to determine which partitions are included in the query; the one that gets used depends on the value of the `Scope` field:\n\n- `Any`: Queries from all partitions in the domain.\n    \n    - If `Range` is set, then the partitions in `Range` will be queried from instead. However, doing this defeats the purpose of using the `Any` scope (use `Partition` instead of `Any` if querying from `Range` is desired)\n        \n- `Domain`: Queries from the root of the domain, regardless of what the value of `Id` is\n    \n    - If `Range` is specified, then this will query only from the partitions in `Range`, and `Id` will be ignored. Similar to the `Any` scope, doing this defeats the purpose of using the `Domain` scope (use `Partition` instead of `Any` if querying from `Range` is desired)\n        \n- `Partition` or `DomainPartition`: Uses the \"navigation\" strategy (see below)\n    \n    - If `IncludeAllChildrenOfScope` is enabled (use `IncludeChildDomainPartitions` instead), then only only child domain partitions of `Id` (if `Scope` is `Partition`) or the first domain partition at or above `Id` (if `Scope` is `DomainPartition`) will be included in the query\n        \n\nThe \"navigation\" strategy involves two steps: picking one or more \"starting partitions\" and \"navigating\" the partition tree from those starting points. The `Scope`, `Id`, `Range`, and `IncludeChildPartitionsInRange` fields determine which partitions are considered the \"starting partitions,\" and the `IncludeChildDomainPartitions`, `IncludeChildSubPartitions`, `IncludeChildAppPartitions`, and `ChildAppPartitionsAppName` fields determine how to navigate the partition tree from the starting partitions.\n\nWhen \"navigating\" the partition tree, only the partition types that are included with the `IncludeChildXPartitions` fields are reachable.\n\n> For example, it is not possible to query for RFIs inside of a subproject unless both `IncludeChildDomainPartitions` and `IncludeChildAppPartitions` are enabled. Since, without `IncludeChildDomainPartitions` the subproject is unreachable, and the same goes for for any children of that subproject (including the app list with the RFIs). \n  \n\n**Example:**\n\nThis query uses `IncludeChildSubPartitions` to include sub-partitions (subfolders) in the result. Without this being set, the response would only contain the highest level folders in the project. `_ScalarExplicits_` _and_ `_ImplicitsDisabled_` _are added to make the entities more readable, and are further explained in 1.3.1: Scalar Explicits and 1.3.3: Implicits Disabled._"
              },
              "response": [
                {
                  "name": "Get Folder Tree",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_FileManager.Folder\",\r\n    \"Partition\": {\r\n        \"IncludeChildSubPartitions\": true\r\n    },\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"ShortLabel\"\r\n        },\r\n        {\r\n            \"Path\": \"PartitionId\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1377"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:30:43 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 9,\n    \"entities\": [\n        {\n            \"id\": 50942146,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.1.13 Destination\"\n        },\n        {\n            \"id\": 50942145,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.1.6 Destination\"\n        },\n        {\n            \"id\": 50942144,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.1.5 Destination\"\n        },\n        {\n            \"id\": 50942143,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.2.7 Folder\"\n        },\n        {\n            \"id\": 50942142,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.2.6 Destination\"\n        },\n        {\n            \"id\": 50942141,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.2.6 Source\"\n        },\n        {\n            \"id\": 50942140,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.2.5 Folder\"\n        },\n        {\n            \"id\": 50942139,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50942113,\n            \"ShortLabel\": \"3.2.1 Folder\"\n        },\n        {\n            \"id\": 50942113,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"PartitionId\": 50926912,\n            \"ShortLabel\": \"Kahua Postman Collection\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56352069\n}"
                }
              ]
            },
            {
              "name": "1.1.4: EntityDefMode",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDefs\": \"kahua_FileManager.File,kahua_FileManager.Folder\",\r\n    \"EntityDefMode\": \"Multiple\",\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"ShortLabel\"\r\n        },\r\n        {\r\n            \"Path\": \"PartitionId\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{kpc-seed-root}}"
                    }
                  ]
                },
                "description": "Typically, a query only returns one type of entity. If this is not desired, the `EntityDefMode` field may be used to query for multiple types of entities.\n\n`EntityDefMode` may be equal to one of the following:\n\n- `Any`: Return all entities of any type. This is the default if `EntityDef` is not specified\n    \n- `Single`: Return all entities of type `EntityDef`. This is the default if `EntityDef` is specified\n    \n- `Multiple`: Return all entities whose types are in `EntityDefs` (`EntityDefs` is a comma-separated list of entity definitions). This is the default if `EntityDefs` is specified\n    \n    - When using this mode, the first entity definition specified is used to determine what attributes are available\n        \n- `Lineal`: Return all entities of type equal to or a decendant of `EntityDef` or any element of `EntityDefs`\n    \n    - When using this mode, the entity definition `EntityDef`, or the first element of `EntityDefs` if `EntityDef` is not specified is used to determine what attributes are available\n        \n\n**Example:**\n\nThis query returns all `kahua_FileManager.Folder` AND `kahua_FileManager.File` entities in the partition specified by `:projectId`."
              },
              "response": [
                {
                  "name": "Get Files and Folders",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDefs\": \"kahua_FileManager.File,kahua_FileManager.Folder\",\r\n    \"EntityDefMode\": \"Multiple\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50942113"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "13813"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "109"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:31:39 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 16,\n    \"entities\": [\n        {\n            \"id\": 50942146,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.867\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942146,\n            \"InstanceId\": 50942146,\n            \"Name\": \"3.1.13 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.13 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.13 Destination\",\n            \"ShortLabel\": \"3.1.13 Destination\",\n            \"LongLabel\": \"Folder 3.1.13 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.13 Destination\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"entityDef\": \"kahua_FileManager.Folder\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942145,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.757\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942145,\n            \"InstanceId\": 50942145,\n            \"Name\": \"3.1.6 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.6 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.6 Destination\",\n            \"ShortLabel\": \"3.1.6 Destination\",\n            \"LongLabel\": \"Folder 3.1.6 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.6 Destination\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942144,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.657\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942144,\n            \"InstanceId\": 50942144,\n            \"Name\": \"3.1.5 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.5 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.5 Destination\",\n            \"ShortLabel\": \"3.1.5 Destination\",\n            \"LongLabel\": \"Folder 3.1.5 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.5 Destination\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942143,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.547\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942143,\n            \"InstanceId\": 50942143,\n            \"Name\": \"3.2.7 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.7 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.7 Folder\",\n            \"ShortLabel\": \"3.2.7 Folder\",\n            \"LongLabel\": \"Folder 3.2.7 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.7 Folder\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942142,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.437\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942142,\n            \"InstanceId\": 50942142,\n            \"Name\": \"3.2.6 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.6 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.6 Destination\",\n            \"ShortLabel\": \"3.2.6 Destination\",\n            \"LongLabel\": \"Folder 3.2.6 Destination\",\n            \"DetailLabel\": \"Folder: 3.2.6 Destination\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942141,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.327\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942141,\n            \"InstanceId\": 50942141,\n            \"Name\": \"3.2.6 Source\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.6 Source\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.6 Source\",\n            \"ShortLabel\": \"3.2.6 Source\",\n            \"LongLabel\": \"Folder 3.2.6 Source\",\n            \"DetailLabel\": \"Folder: 3.2.6 Source\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942140,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.217\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942140,\n            \"InstanceId\": 50942140,\n            \"Name\": \"3.2.5 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.5 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.5 Folder\",\n            \"ShortLabel\": \"3.2.5 Folder\",\n            \"LongLabel\": \"Folder 3.2.5 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.5 Folder\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942139,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T13:29:40.107\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942139,\n            \"InstanceId\": 50942139,\n            \"Name\": \"3.2.1 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.1 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.1 Folder\",\n            \"ShortLabel\": \"3.2.1 Folder\",\n            \"LongLabel\": \"Folder 3.2.1 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.1 Folder\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942135,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.940\",\n            \"ModifiedDateTime\": \"2025-07-24T13:29:40.047\",\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942135,\n            \"InstanceId\": 50942138,\n            \"RecycleBinLabel\": \"3.1.10 File.txt\",\n            \"ShortLabel\": \"3.1.10 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.10 File.txt\",\n            \"LongLabel\": \"File 3.1.10 File.txt\",\n            \"LockKey\": \"<State CreatedDateTime=\\\"6/24/2025 1:29:38 PM\\\" OwnerFirstName=\\\"{{Brandon}}\\\" OwnerLastName=\\\"{{Buckley}}\\\" PersonalDomainKey=\\\"{{undefined}}\\\" CurrentState=\\\"Locked\\\" />\",\n            \"Attachment\": {\n                \"identifier\": \"50942135-50942137\",\n                \"name\": \"3.1.10 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942132,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.830\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942132,\n            \"InstanceId\": 50942132,\n            \"RecycleBinLabel\": \"3.1.9 File B.txt\",\n            \"ShortLabel\": \"3.1.9 File B.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.9 File B.txt\",\n            \"LongLabel\": \"File 3.1.9 File B.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50942132-50942134\",\n                \"name\": \"3.1.9 File B.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942129,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.703\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942129,\n            \"InstanceId\": 50942129,\n            \"RecycleBinLabel\": \"3.1.9 File A.txt\",\n            \"ShortLabel\": \"3.1.9 File A.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.9 File A.txt\",\n            \"LongLabel\": \"File 3.1.9 File A.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50942129-50942131\",\n                \"name\": \"3.1.9 File A.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942126,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.593\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942126,\n            \"InstanceId\": 50942126,\n            \"RecycleBinLabel\": \"3.1.7 File.txt\",\n            \"ShortLabel\": \"3.1.7 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.7 File.txt\",\n            \"LongLabel\": \"File 3.1.7 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50942126-50942128\",\n                \"name\": \"3.1.7 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942123,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.470\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942123,\n            \"InstanceId\": 50942123,\n            \"RecycleBinLabel\": \"3.1.6 File.txt\",\n            \"ShortLabel\": \"3.1.6 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.6 File.txt\",\n            \"LongLabel\": \"File 3.1.6 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50942123-50942125\",\n                \"name\": \"3.1.6 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942120,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.343\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942120,\n            \"InstanceId\": 50942120,\n            \"RecycleBinLabel\": \"3.1.5 File.txt\",\n            \"ShortLabel\": \"3.1.5 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.5 File.txt\",\n            \"LongLabel\": \"File 3.1.5 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50942120-50942122\",\n                \"name\": \"3.1.5 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942117,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.203\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942117,\n            \"InstanceId\": 50942117,\n            \"RecycleBinLabel\": \"3.1.4 File.txt\",\n            \"ShortLabel\": \"3.1.4 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.4 File.txt\",\n            \"LongLabel\": \"File 3.1.4 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50942117-50942119\",\n                \"name\": \"3.1.4 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50942114,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"MarkupEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-24T13:29:39.063\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942113,\n            \"Id\": 50942114,\n            \"InstanceId\": 50942114,\n            \"RecycleBinLabel\": \"3.1.1 File.txt\",\n            \"ShortLabel\": \"3.1.1 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.1 File.txt\",\n            \"LongLabel\": \"File 3.1.1 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50942114-50942116\",\n                \"name\": \"3.1.1 File.txt\"\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50942113,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56352069\n}"
                }
              ]
            },
            {
              "name": "1.1.5: EntityRange",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityRange\": \"{{kpc-seed-contact-id}},{{kpc-seed-2.1.2-id}},{{kpc-seed-3.2.1-folder}}\",\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "The `EntityRange` parameter can be used to run a query against a specific list of entities. The value of `EntityRange` is a comma-separated list of all the entities' ID's. There is no restriction on the type of entity used.\n\n> _**NOTE**_: Using `EntityRange` will ignore all scoping parameters (See 1.1.2 and 1.1.3) \n  \n\n**Example:**\n\nThis query returns three types of entities, corresponding to the IDs provided in `EntityRange`."
              },
              "response": [
                {
                  "name": "Get Multiple Entities",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityRange\": \"49711149,50942148,50942139\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4684"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:33:35 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 49711149,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\"\n            /* snip */\n        },\n        {\n            \"id\": 50942148,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\"\n            /* snip */\n        },\n        {\n            \"id\": 50942139,\n            \"entityDef\": \"kahua_FileManager.Folder\"\n            /* snip */\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56352069\n}"
                }
              ]
            }
          ],
          "description": "This section details some of the basic ad-hoc query options that control what entities are included."
        },
        {
          "name": "1.2: Conditions",
          "item": [
            {
              "name": "1.2.1: Data Conditions",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Type\": \"StartsWith\",\r\n            \"Path\": \"FirstName\",\r\n            \"Value\": \"B\"\r\n        }\r\n    ],\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    } \r\n}\r\n\r\n",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "The most basic condition is the `Data` condition. A `Data` condition filters against an attribute of an entity. A `Data` condition has the following fields:\n\n- `Path`: The path to the attribute in the entity to check/compare\n    \n- `Type`: The type of condition to evaluate; see table below\n    \n- `IsDynamic` (optional): If `true`, then setting `Path` to an attribute that does not exist will not cause the request to return `400 Bad Request`. This is particularly useful when when querying multiple types of entities (see 1.1.4 and 1.1.5)\n    \n- `DataType` (optional): If `IsDynamic` is `true`, then treat the attribute at `Path` as if it is of this type. This is usually required when working with multiple types of entities (see 1.1.4 and 1.1.5). The following values are accepted:\n    \n    - `AutoNumber`\n        \n    - `Boolean`\n        \n    - `Currency`\n        \n    - `Date`\n        \n    - `DateTime`\n        \n    - `Default` (default if not specified)\n        \n    - `EmailAddress`\n        \n    - `Encrypted`\n        \n    - `Entity`\n        \n    - `Guid`\n        \n    - `Integer`\n        \n    - `Lookup`\n        \n    - `Number`\n        \n    - `Percentage`\n        \n    - `PhoneNumber`\n        \n    - `RichText`\n        \n    - `SocialNetwork`\n        \n    - `State`\n        \n    - `Text`\n        \n    - `TextTokenized`\n        \n    - `Time`\n        \n    - `UnlimitedText`\n        \n    - `Url`\n        \n    - `Xml`\n        \n- Optionally (depends on `Type`), one of the following:\n    \n    - `Value`: A single value to compare against. For the Types that `Value` applies to, you may also use:\n        \n        - `ValuePath`: The path to an attribute to compare against\n            \n        - `ValueExpression`: An \"expression\" to compare against. Note that this expression is evaluated before the query is run, not against each entity in the query. The expression is similar to a string, but special values in curly braces will be replaced. The following replacements are accepted (there are others but they do nothing for ad-hoc queries):\n            \n            - The name of a parameter (see 1.2.6)\n                \n            - `{date:current}`: The current date in UTC\n                \n                - Use `datetime` instead of `date` to add the time\n                    \n            - `{date:usercurrent}`: The current date for the current user\n                \n                - Use `datetime` instead of `date` to add the time\n                    \n            - `{datetime:currentticks}`: The current time in UTC in ticks (see [DateTime.Ticks](https://learn.microsoft.com/en-us/dotnet/api/system.datetime.ticks))\n                \n            - `{company:currentid}`: The `Id` of the current user's `Company`\n                \n            - `{contact:current}`: The `ShortLabel` of the current user's contact\n                \n            - `{contact:currentid}`: The `Id` of the current user's contact\n                \n            - `{contact:currentemail}`: The username of the current user\n                \n            - `{domain:companyid}`: The `Id` of the current domain's company\n                \n            - `{domain:key}`: The domain key of the current domain\n                \n            - `{domain:code}`: The first letter of the domain's key plus the id of the current domain in hexadecimal\n                \n            - `{environment:name}`: The name of the current environment\n                \n            - `{guid}`: A random GUID\n                \n            - `{text:newline}`: Evaluates to a newline character (see [Environment.NewLine](https://learn.microsoft.com/en-us/dotnet/api/system.environment.newline))\n                \n            - `{Partition.Id}` or `{partition:currentid}`: Return the partition being queried if there is only one \"start partition\" (see 1.1.3)\n                \n            - `{Context:DomainPartitionId}`: The `Id` parameter of the query's `Partition` (see 1.1.3), equal to `:partitionId` for ad-hoc queries (the name is a misnomer)\n                \n    - `Values`: A comma separated list of values to compare against\n        \n\nA `Data` condition may have any of following `Type` values:\n\n| **`Type`** | **Inverse** **`Type`** | **Value(s)** | **Description** |\n| --- | --- | --- | --- |\n| `Contains` | `DoesNotContain` | Any string | Checks if `{Path}` contains the value |\n| `EqualTo` | `NotEqualTo` | Anything | Checks if `{Path}` is equal to the value |\n| `GreaterThan` | `LessThanOrEqualTo` | Any number/date/string | Checks if `{Path}` is greater than the value |\n| `GreaterThanOrEqualTo` | `LessThan` | Any number/date/string | Checks if `{Path}` is greater than or equal to the value |\n| `LessThan` | `GreaterThanOrEqualTo` | Any number/date/string | Checks if `{Path}` is less than the value |\n| `LessThanOrEqualTo` | `GreaterThan` | Any number/date/string | Checks if `{Path}` is less than or equal to the value |\n| `HasValue` | `HasNoValue` | N/A | Checks if `{Path}` is not null and not empty |\n| `IsTrue` | `IsFalse` | N/A | Checks if `{Path}` is true |\n| `In` | `NotIn` | List of values, use `Values` instead of `Value` | Checks if `{Path}` is an element of the list of values |\n| `HasLink` | `HasNoLink` | (Optional) List of entity ID's, use `Values` instead of `Value` | Checks if `{Path}` has a reference to a child entity and (if specified) if its ID is present in `Values` |\n| `StartsWith` | N/A | Any string | Checks if `{Path}` starts with the value |\n| `EndsWith` | N/A | Any string | Checks if `{Path}` ends with the value |\n\n> _**NOTE**_: There are more data condition types than the ones listed above. However, they are not supported in queries and will result in a `400 Bad Request` response. \n  \n\n**Example:**\n\nThis query returns all `kahua_PeopleManager.kahua_Contact` entities with a `FirstName` attribute that starts with \"B\"."
              },
              "response": [
                {
                  "name": "Get Contacts by First Letter",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Type\": \"StartsWith\",\r\n            \"Path\": \"FirstName\",\r\n            \"Value\": \"A\"\r\n        }\r\n    ],\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"FirstName\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    } \r\n}\r\n\r\n",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "184"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "32"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:43:13 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 1,\n    \"entities\": [\n        {\n            \"id\": 49709788,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"FirstName\": \"App\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56352069\n}"
                }
              ]
            },
            {
              "name": "1.2.2: Compound Conditions",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"AnyOf\",\r\n            \"_children\": [\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"FirstName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"A\"\r\n                },\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"FirstName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"B\"\r\n                }\r\n\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"FirstName\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "For more complex conditions, a compound condition can be used to combine multiple conditions together. The types (`PropertyName`) of compound conditions are:\n\n- `AllOf`: If every child condition is true, then return that record\n    \n- `AnyOf`: If one or more of the child conditions are true, then return that record\n    \n- `NoneOf`: If any of the child of conditions are true, then do not return that record\n    \n\nA compound condition has the following fields:\n\n- `_children`: An array of conditions to combine (this can be any condition described in this section, including another compound condition)\n    \n\n**Example:**\n\nThis query returns any `kahua_PeopleManager.kahua_Contact`entities with a `FirstName` attribute that starts with either \"A\" or \"B\"."
              },
              "response": [
                {
                  "name": "Get Contacts by First Letters",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"AnyOf\",\r\n            \"_children\": [\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"FirstName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"A\"\r\n                },\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"FirstName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"B\"\r\n                }\r\n\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"FirstName\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "306"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "32"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:45:12 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50921785,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"FirstName\": \"Brandon\"\n        },\n        {\n            \"id\": 49709788,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"FirstName\": \"App\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56352069\n}"
                }
              ]
            },
            {
              "name": "1.2.3: HubPath Conditions",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_Communications.kahua_Communications\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"HubPath\",\r\n            \"Type\": \"EndsWith\",\r\n            \"Value\": \"\\\\StartTransmittal\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "A `HubPath` condition works similarly to a `Data` condition (see 1.2.2), but instead of checking an attribute specified by a `Path`, it checks the entity's hub path. This is used to filter entities by the workflow step that they exist in.\n\nA hub path is of the following form: `{App Name}.{Workflow Name}\\{Step}`. Note that you need to escape the `\\` in the body of the request with two backslashes.\n\nA `HubPath` condition has the following fields:\n\n- `Type`: any value of `Type` from 1.2.1 that accepts string value(s)\n    \n- Either:\n    \n    - `Value`: Same as 1.2.1\n        \n    - `Values`: Same as 1.2.1\n        \n\n`ValuePath` and `ValueExpression` do not work for `HubPath` conditions"
              },
              "response": [
                {
                  "name": "Get Transmittals",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_Communications.kahua_Communications\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"HubPath\",\r\n            \"Type\": \"EndsWith\",\r\n            \"Value\": \"\\\\StartTransmittal\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "835"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 24 Jul 2025 13:46:08 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 1,\n    \"entities\": [\n        {\n            \"id\": 50942151,\n            \"entityDef\": \"kahua_AEC_Communications.kahua_Communications\",\n            \"hubPath\": \"kahua_AEC_Communications.CommunicationsSignatureWorkflow\\\\StartTransmittal\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"Voicemail\": false,\n            \"MarkupEnabled\": false,\n            \"Date\": \"2025-07-24T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-24T13:29:41.527\",\n            \"ModifiedDateTime\": \"2025-07-24T13:29:41.540\",\n            \"Instance\": 2,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50942151,\n            \"InstanceId\": 50942154,\n            \"Status\": \"New\",\n            \"Number\": \"0020\",\n            \"CommunicationTypeLabel\": \"Transmittal\",\n            \"CommunicationType\": \"Transmittal\",\n            \"AppNameLabel\": \"Communications\",\n            \"RecycleBinLabel\": \"0020: From [From.ContactCompanyLabel]\",\n            \"LongLabel\": \"Communications 0020\",\n            \"DetailLabel\": \"Communications 0020\",\n            \"ShortLabel\": \"Communications 0020\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56352069\n}"
                }
              ]
            },
            {
              "name": "1.2.4: PathedPartition Conditions",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_PartitionBase\",\r\n    // See 1.1.4\r\n    \"EntityDefMode\": \"Lineal\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"PathedPartition\",\r\n            \"Is\": \"AtOrAbove\",\r\n            \"Path\": \"DomainPartition\"\r\n        }\r\n    ],\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Range\": \"0\",\r\n        \"IncludeChildPartitionsInRange\": true,\r\n        \"IncludeChildDomainPartitions\": true\r\n    },\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"Name\"\r\n        },\r\n        {\r\n            \"Path\": \"Path\"\r\n        },\r\n        {\r\n            \"Path\": \"DomainPartitionId\"\r\n        },\r\n        {\r\n            \"Path\": \"DomainPartitionPath\"\r\n        },\r\n        {\r\n            \"Path\": \"AppName\"\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "A `PathedPartition` condition compares the domain partition of a child entity to a specific domain partition. The partition the child entity will be compared against depends on the `Scope` (see 1.1.2 and 1.1.3):\n\n- `Domain`: Compares against the domain root\n    \n- `DomainPartition`: Compares against the first domain partition at or above `:partitionId`\n    \n- Anything else: Comparse against `:partitionId`\n    \n\nThis condition has some caveats:\n\n- This condition only compares _**domain**_ partitions. Using it on non-domain partitions is not supported and will return unexpected results\n    \n- The `Path` field is required, which means there is no way to check the partition of the entity (only its children)\n    \n- The domain root does not have an entity associated with it, so entities in the domain root will never be included by this condition\n    \n\nThe `PathedPartition` condition has the following fields:\n\n- `Path`: The child entity to compare\n    \n- `Is`: One of the following (optionally prefixed with `Not` to return entities that do not match):\n    \n    - `AtOrAbove`: The partition is at or above the child entity's partition\n        \n    - `Above`: The partition is above the child entity's partition\n        \n    - `AtOrBelow`: The partition is at or below the child entity's partition\n        \n    - `Below`: The partition is below the child entity's partition"
              },
              "response": [
                {
                  "name": "Get Partitions At or Above Project",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_PartitionBase\",\r\n    // See 1.1.4\r\n    \"EntityDefMode\": \"Lineal\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"PathedPartition\",\r\n            \"Is\": \"AtOrAbove\",\r\n            \"Path\": \"DomainPartition\"\r\n        }\r\n    ],\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Range\": \"0\",\r\n        \"IncludeChildPartitionsInRange\": true,\r\n        \"IncludeChildDomainPartitions\": true\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "8187"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:02:44 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 8,\n    \"entities\": [\n        {\n            \"id\": 50944211,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.247\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50944211,\n            \"InstanceId\": 50944211,\n            \"Name\": \"Kahua Postman Collection\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"RecycleBinLabel\": \"Kahua Postman Collection\",\n            \"ShortLabel\": \"Kahua Postman Collection\",\n            \"LongLabel\": \"Folder Kahua Postman Collection\",\n            \"DetailLabel\": \"Folder: Kahua Postman Collection\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Partition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50926920,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926920,\n            \"InstanceId\": 50926920,\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_DeletedList\",\n            \"Type\": \"Deleted\",\n            \"Name\": \"Deleted\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Deleted\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50926919,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926919,\n            \"InstanceId\": 50926919,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Workflow\",\n            \"Name\": \"TaskList\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\TaskList\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50926918,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926918,\n            \"InstanceId\": 50926918,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Master\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Master\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50926917,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 2,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926917,\n            \"InstanceId\": 50926917,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Vendor\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Vendor\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50926916,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DisplayOrder\": 3,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926916,\n            \"InstanceId\": 50926916,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Customer\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Customer\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50926915,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926915,\n            \"InstanceId\": 50926915,\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"Name\": \"PreConstruction\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\PreConstruction\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50926914,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"MarkupEnabled\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"Instance\": 2,\n            \"DisplayOrder\": 2,\n            \"PortableViewInstance\": 2,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50926914,\n            \"InstanceId\": 50926914,\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Name\": \"Construction\",\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Construction\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354812\n}"
                }
              ]
            },
            {
              "name": "1.2.5: Link Conditions",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"Link\",\r\n            \"Path\": \"Author\",\r\n            \"ToEntityRange\": \"{{kpc-seed-contact-id}}\"\r\n        }\r\n    ]\r\n}\r\n\r\n",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "A `Link` condition checks if the `Id` of a child entity is equal to a particular value. It has the following fields:\n\n- `Path`: The path to the child entity (not the `Id` of the child entity!)\n    \n- Either `ToEntityRange` or `FromEntityRange`: A list of comma separated ID's to compare against\n    \n\nIf `ToEntityRange` is specified, then the condition will return an entity if the child entity at the path `Path` has an `Id` that exists in `ToEntityRange`.\n\nIf `Path` points to a `OneToMany` attribute, then the entity will be included if any of the child entities in that list have an `Id` that is in `ToEntityRange`.\n\n> NOTE: When testing with the seeded environment, running 2.2.1: Create/Update Child Entities is a prerequisite in order to get a non-empty response from this query (that activity adds the child entity `Author`that is referenced in the link condition)."
              },
              "response": [
                {
                  "name": "Get Daily Reports by Author",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "// /!\\ 2.2.1 was run before this; otherwise you will get no results\r\n{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"Link\",\r\n            \"Path\": \"Author\",\r\n            \"ToEntityRange\": \"49709788\"\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "2518"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "31"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:05:21 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 1,\n    \"entities\": [\n        {\n            \"id\": 50944248,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"Notes\": \"2.2.1 DR: Dolorem est culpa officia dolores quaerat et qui.\",\n            \"Author\": {\n                \"id\": 49709788,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"FirstName\": \"App\",\n                \"LastName\": \"Dev\"\n                /* snip */\n            }\n            /* snip */\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            },
            {
              "name": "1.2.6: Parameter Conditions",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"Parameter\",\r\n            \"Type\": \"HasValue\",\r\n            \"Name\": \"SomeParam\"\r\n        }\r\n    ],\r\n    \"Parameters\": [\r\n        {\r\n            \"PropertyName\": \"Parameter\",\r\n            \"Name\": \"Parameters.SomeParam\",\r\n            \"Value\": \"Hello World\"\r\n        }\r\n    ]\r\n}\r\n\r\n",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "A `Parameter` condition checks if a query parameter exists. It has the following fields:\n\n- `Type`: Either `HasNoValue` or `HasValue`\n    \n- `Name`: The name of the parameter to check\n    \n    - _**WARNING**_: the query runner actually prepends `Parameters` to `Name`, so you will need to rename your paramter accordingly (as in the example below). This prefix requirement does not exist when using `ValueExpression` (see 1.2.1)\n        \n\nQuery parameters can be added using the `Parameters` array of the query. Each element of `Parameters` has the following fields:\n\n- `PropertyName`: Always `Parameter`\n    \n- `Name`: The name of the parameter\n    \n- `Value`: The value of the parameter\n    \n\n> Remarks: The reason this condition exists is to change the behavior of a query depending on whether or not a parameter was specified. This is not particularly useful for ad-hoc queries, but it could be useful when writing a HubDef query"
              },
              "response": [
                {
                  "name": "Check Paramater",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"Condition\": [\r\n        {\r\n            \"PropertyName\": \"Parameter\",\r\n            \"Type\": \"HasValue\",\r\n            \"Name\": \"SomeParam\"\r\n        }\r\n    ],\r\n    \"Parameters\": [\r\n        {\r\n            \"PropertyName\": \"Parameter\",\r\n            \"Name\": \"Parameters.SomeParam\",\r\n            \"Value\": \"Hello World\"\r\n        }\r\n    ]\r\n}\r\n\r\n",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "6064"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "47"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:19:37 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 50944248,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"Date\": \"2025-07-25T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-25T13:01:24.000\",\n            \"ModifiedDateTime\": \"2025-07-25T13:05:18.963\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50944248,\n            \"InstanceId\": 50944254,\n            \"Number\": \"0021\",\n            \"Notes\": \"2.2.1 DR: Dolorem est culpa officia dolores quaerat et qui.\",\n            \"LongLabel\": \"Daily Report: 7/25/2025\",\n            \"DetailLabel\": \"Daily Report: 7/25/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0021 App Dev\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsEmployee\": false,\n                \"MarkupEnabled\": false,\n                \"IsDomainUser\": true,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainAdmin\": true,\n                \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                \"DomainPartitionId\": 0,\n                \"Instance\": 3,\n                \"PortableViewInstance\": 3,\n                \"PartitionId\": 49709712,\n                \"Id\": 49711149,\n                \"InstanceId\": 49711160,\n                \"EmailAddress\": \"bbuckley@kahua.com\",\n                \"FirstName\": \"Brandon\",\n                \"LastName\": \"Buckley\",\n                \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                \"SourceApp\": \"kahua_PeopleManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                \"ContactFullNameLabel\": \"Brandon Buckley\",\n                \"ShortLabel\": \"Brandon Buckley\",\n                \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                \"DetailLabel\": \"Name: Brandon Buckley\",\n                \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                \"ProfilePhoto\": {\n                    \"identifier\": \"49711149-49711154\",\n                    \"name\": \"default_profile_photo.png\"\n                },\n                \"Company\": {\n                    \"id\": 49709785,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                \"Office\": {\n                    \"id\": 49709783,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            },\n            \"Author\": {\n                \"id\": 49709788,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsEmployee\": false,\n                \"MarkupEnabled\": false,\n                \"IsDomainUser\": true,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainAdmin\": true,\n                \"CreatedDateTime\": \"2025-05-19T17:53:13.710\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:13.977\",\n                \"PartitionId\": 0,\n                \"DomainPartitionId\": 0,\n                \"PortableViewInstance\": 2,\n                \"Instance\": 3,\n                \"Id\": 49709788,\n                \"InstanceId\": 49709797,\n                \"EmailAddress\": \"kahuaappdev@gmail.com\",\n                \"FirstName\": \"App\",\n                \"LastName\": \"Dev\",\n                \"PersonId\": \"77558b3f-78a4-4b9c-989d-1f49aa150c25\",\n                \"SourceApp\": \"kahua_PeopleManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"ContactCompanyLabel\": \"App Dev - BBuckleyCo\",\n                \"ContactFullNameLabel\": \"App Dev\",\n                \"ShortLabel\": \"App Dev\",\n                \"CompanyContactLabel\": \"BBuckleyCo - App Dev\",\n                \"LongLabel\": \"App Dev (kahuaappdev@gmail.com)\",\n                \"DetailLabel\": \"Name: App Dev\",\n                \"FullTextIndexContent\": \"App Dev BBuckleyCo\",\n                \"ProfilePhoto\": {\n                    \"identifier\": \"49709788-49709793\",\n                    \"name\": \"default_profile_photo.png\"\n                },\n                \"Company\": {\n                    \"id\": 49709785,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                },\n                \"Office\": {\n                    \"id\": 49709783,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                }\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944247,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"Date\": \"2025-07-25T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.890\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50944247,\n            \"InstanceId\": 50944247,\n            \"Number\": \"0020\",\n            \"Notes\": \"2.1.3 DR: Aut eveniet ut reprehenderit voluptas eligendi sunt provident.\",\n            \"LongLabel\": \"Daily Report: 7/25/2025\",\n            \"DetailLabel\": \"Daily Report: 7/25/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0020 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944246,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"MarkupEnabled\": false,\n            \"Date\": \"2025-07-25T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.783\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"CompanyCount\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"Instance\": 1,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50944246,\n            \"InstanceId\": 50944246,\n            \"Number\": \"0019\",\n            \"Notes\": \"2.1.2 DR: Aut autem minus.\",\n            \"LongLabel\": \"Daily Report: 7/25/2025\",\n            \"DetailLabel\": \"Daily Report: 7/25/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0019 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            }
          ],
          "description": "This section details conditions, which are used to filter the results of a query. Conditions can be added to a query by adding the `Condition` field to the query. The `Condition` field is an array with _**ONE**_ object (if more are added, only the first condition will apply). This object should have a `PropertyName` equal to one of the following:\n\n- `AllOf`: (See 1.2.2)\n    \n- `AnyOf`: (See 1.2.2)\n    \n- `NoneOf`: (See 1.2.2)\n    \n- `Data`: (See 1.2.1)\n    \n- `HubPath`: (See 1.2.3)\n    \n- `PathedPartition`: (See 1.2.4)\n    \n- `Link`: (See 1.2.5)\n    \n- `Parameter`: (See 1.2.6)\n    \n\nOthers are possible, but they are not particularly useful for ad-hoc queries:\n\n- `Expression`: Similar to a `Data` condition, but compares against an expression (see `ValueExpression` 1.2.1) instead of an attribute of an entity. Because the expression is evaluated before the query is run, this condition will only ever be true for all entities or none of them. It also only supports the `EqualTo` and `NotEqualTo` values for `Type` and the `Value` field (no `Values`, `ValuePath`, or `ValueExpression`)\n    \n- kBuilder lists many more conditions, but many of them are unsupported for queries and will cause a `400 Bad Request` to be returned"
        },
        {
          "name": "1.3: Explicits, Implicits, and Nesting",
          "item": [
            {
              "name": "1.3.1: Scalar Explicits",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"ShortLabel\"\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "Scalar explicits enable querying for specific attributes of entities rather than querying the entire entity. This is useful as it makes the response only return the data you're looking for.\n\nScalar explicits are specified in the `ScalarExplicits` array. Each element of `ScalarExplicits` is an object with the following fields:\n\n- `Path`: The path to the attribute to include\n    \n\n> _**NOTE**_: Scalar explicits are applied relative to each entity, not the \"root\" entity returned by the query. E.g., instead of setting `Path` to `\"MyChildEntity.Name\"`, you would use just `\"Name\"`. \n  \n\n**Example:**\n\nThis query returns `kahua_AEC_DailyReport.DailyReport` entities containing only critical scalar attributes (like `id`, `entityDef`, etc.) as well as the attributes specified in the `ScalarExplicits` list (for this query, `ShortLabel`)."
              },
              "response": [
                {
                  "name": "Get Contact ShortLabel",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"ShortLabel\"\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4104"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "62"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:20:20 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 50944248,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AutomationLabel\": \" App Dev\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsEmployee\": false,\n                \"MarkupEnabled\": false,\n                \"IsDomainUser\": true,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainAdmin\": true,\n                \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                \"DomainPartitionId\": 0,\n                \"Instance\": 3,\n                \"PortableViewInstance\": 3,\n                \"PartitionId\": 49709712,\n                \"Id\": 49711149,\n                \"InstanceId\": 49711160,\n                \"EmailAddress\": \"bbuckley@kahua.com\",\n                \"FirstName\": \"Brandon\",\n                \"LastName\": \"Buckley\",\n                \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                \"SourceApp\": \"kahua_PeopleManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                \"ContactFullNameLabel\": \"Brandon Buckley\",\n                \"ShortLabel\": \"Brandon Buckley\",\n                \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                \"DetailLabel\": \"Name: Brandon Buckley\",\n                \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                \"ProfilePhoto\": {\n                    \"identifier\": \"49711149-49711154\",\n                    \"name\": \"default_profile_photo.png\"\n                },\n                \"Company\": {\n                    \"id\": 49709785,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                \"Office\": {\n                    \"id\": 49709783,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            },\n            \"Author\": {\n                \"id\": 49709788,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsEmployee\": false,\n                \"MarkupEnabled\": false,\n                \"IsDomainUser\": true,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainAdmin\": true,\n                \"CreatedDateTime\": \"2025-05-19T17:53:13.710\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:13.977\",\n                \"PartitionId\": 0,\n                \"DomainPartitionId\": 0,\n                \"PortableViewInstance\": 2,\n                \"Instance\": 3,\n                \"Id\": 49709788,\n                \"InstanceId\": 49709797,\n                \"EmailAddress\": \"kahuaappdev@gmail.com\",\n                \"FirstName\": \"App\",\n                \"LastName\": \"Dev\",\n                \"PersonId\": \"77558b3f-78a4-4b9c-989d-1f49aa150c25\",\n                \"SourceApp\": \"kahua_PeopleManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"ContactCompanyLabel\": \"App Dev - BBuckleyCo\",\n                \"ContactFullNameLabel\": \"App Dev\",\n                \"ShortLabel\": \"App Dev\",\n                \"CompanyContactLabel\": \"BBuckleyCo - App Dev\",\n                \"LongLabel\": \"App Dev (kahuaappdev@gmail.com)\",\n                \"DetailLabel\": \"Name: App Dev\",\n                \"FullTextIndexContent\": \"App Dev BBuckleyCo\",\n                \"ProfilePhoto\": {\n                    \"identifier\": \"49709788-49709793\",\n                    \"name\": \"default_profile_photo.png\"\n                },\n                \"Company\": {\n                    \"id\": 49709785,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                },\n                \"Office\": {\n                    \"id\": 49709783,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                }\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944247,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AutomationLabel\": \" Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944246,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AutomationLabel\": \" Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            },
            {
              "name": "1.3.2: Nested/Child Entities (Explicits)",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"Company\"\r\n        }\r\n    ],\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "Nested (aka child) entities are entities found within entites. An example of a nested entity is the `Company` attribute of a `kahua_PeopleManager.kahua_Contact` entity. By default, the `id` and `entityDef` fields of all child entities are included, but none of the attributes.\n\nTo include attributes of a nested/child entity in the query response, add an explicit to the query. Explicits are specified in the `Explicits` array. Each element of `Explicits` is an object with the following fields:\n\n- `PropertyName`: Equal to `Data`\n    \n- `Path`: The path to the child entity (or an attribute of it) to include\n    \n- `IsDynamic`: Same as 1.2.1, except that if this is disabled and the attribute at `Path` is not found then the explicit does nothing instead of causing the query to return a `400 Bad Request` response\n    \n- `DataType`: Same as 1.2.1"
              },
              "response": [
                {
                  "name": "Get Contacts w/ Company",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"Company\"\r\n        }\r\n    ],\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "3444"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "63"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:22:46 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50921785,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            /* snip */\n            \"Company\": {\n                \"id\": 49709785,\n                \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsPreferredVendor\": false,\n                \"IsPrequalified\": false,\n                \"MarkupEnabled\": false,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainCompany\": true,\n                \"CreatedDateTime\": \"2025-05-19T17:53:13.570\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:13.867\",\n                \"PartitionId\": 0,\n                \"DomainPartitionId\": 0,\n                \"Instance\": 2,\n                \"PortableViewInstance\": 2,\n                \"Id\": 49709785,\n                \"InstanceId\": 49709794,\n                \"Name\": \"BBuckleyCo\",\n                \"SourceApp\": \"kahua_CompanyManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"LongLabel\": \"BBuckleyCo\",\n                \"ShortLabel\": \"BBuckleyCo\",\n                \"DetailLabel\": \"Company: BBuckleyCo\",\n                \"Logo\": {\n                    \"identifier\": \"49709785-49709796\",\n                    \"name\": \"default_company_logo_7F4B.png\"\n                },\n                \"Offices\": [\n                    {\n                        \"id\": 49709783,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    }\n                ],\n                \"PrimaryOffice\": {\n                    \"id\": 49709783,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                }\n            }\n        }\n        /* snip */\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            },
            {
              "name": "1.3.3: Implicits Disabled",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "Setting the `ImplicitsDisabled` parameter to `true` (the default is `false`) will prevent any implicit attributes (child entity `id` values) from appearing in the results set. This can be helpful for reducing the result set size if child entities are not needed. Combine this with scalar explicits (See 1.3.1) to reduce the results set further."
              },
              "response": [
                {
                  "name": "Get Contacts",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Domain\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1988"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "32"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:24:34 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50921785,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsDomainUser\": false,\n            \"IsEmployee\": false,\n            \"IsDomainAdmin\": true,\n            \"IsInSyncWithCommunity\": true,\n            \"IsPublished\": true,\n            \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n            \"ModifiedDateTime\": \"2025-07-16T17:54:47.443\",\n            \"CreatedDateTime\": \"2025-07-16T17:54:47.443\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"PortableViewInstance\": 1,\n            \"Id\": 50921785,\n            \"InstanceId\": 50921785,\n            \"EmailAddress\": \"bbuckley@kahua.com\",\n            \"FirstName\": \"Brandon\",\n            \"LastName\": \"Buckley\",\n            \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n            \"SourceApp\": \"kahua_PeopleManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n            \"ContactFullNameLabel\": \"Brandon Buckley\",\n            \"ShortLabel\": \"Brandon Buckley\",\n            \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n            \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n            \"DetailLabel\": \"Name: Brandon Buckley\",\n            \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\"\n        }\n        /* snip */\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            }
          ],
          "description": "This section details nested (aka child) entities, and how to include/exclude specific fields from the response"
        },
        {
          "name": "1.4: Sorting and Pagination",
          "item": [
            {
              "name": "1.4.1: Skip & Take",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_FileManager.File\",\r\n    \"Skip\": 1,\r\n    \"Take\": 2\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{kpc-seed-root}}"
                    }
                  ]
                },
                "description": "The `Skip` and `Take` fields of a query can be used to select specific ranges of entities to return.\n\nBy default, `Skip` and `Take` are `0` and `100` respectively. This is why the queries in Section 1.1 only return up to 100 records.\n\nThe `Skip` field denotes the starting point in the list of results the query should return. The `Take` field denotes how many records to return.\n\nNote that `Take` is not limited to 100, that is just the default. However, be careful with setting `Take` too high, since it could cause a timeout.\n\nOr, in other words, `Skip` and `Take` are equivalent to:\n\n- SQL's `OFFSET` and `LIMIT` (or`FETCH` in some databases) clauses\n    \n- C#'s `Skip()` and `Take()` LINQ methods\n    \n\nThis can be used to break up large queries into multiple smaller ones, or to paginate the results of a query. An example of the former use case is as follows:\n\n``` python\nimport datetime\nresults = []\npage_size = 500\nstart = 0\nwhile True:\n    q = perform_query({\n        \"PropertyName\": \"Query\",\n        \"EntityDef\": \"kahua_FileManaager.File\",\n        # etc...\n        \"Skip\": start,\n        \"Take\": page_size,\n    })\n    if len(q.entities) == 0:\n        break\n    start += min(page_size, len(q.entities))\n    results += q.entities\n\n ```\n\n> _**NOTE**_: The above script does not account for entities that are created/deleted/updated between queries. One such method of solving this problem is described in 1.99.2. The information from 5.3.3 and 5.3.4 may also be helpful to solve this problem."
              },
              "response": [
                {
                  "name": "Get Files in Folder",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_FileManager.File\",\r\n    \"Skip\": 1,\r\n    \"Take\": 2\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50944211"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1954"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "47"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:25:50 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 8,\n    \"entities\": [\n        {\n            \"id\": 50944239,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.423\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944239,\n            \"InstanceId\": 50944239,\n            \"RecycleBinLabel\": \"3.1.9 File B.txt\",\n            \"ShortLabel\": \"3.1.9 File B.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.9 File B.txt\",\n            \"LongLabel\": \"File 3.1.9 File B.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944239-50944241\",\n                \"name\": \"3.1.9 File B.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"entityDef\": \"kahua_FileManager.Folder\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944236,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"MarkupEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.280\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944236,\n            \"InstanceId\": 50944236,\n            \"RecycleBinLabel\": \"3.1.9 File A.txt\",\n            \"ShortLabel\": \"3.1.9 File A.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.9 File A.txt\",\n            \"LongLabel\": \"File 3.1.9 File A.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944236-50944238\",\n                \"name\": \"3.1.9 File A.txt\"\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 1,\n    \"taken\": 2,\n    \"marker\": 56354814\n}"
                }
              ]
            },
            {
              "name": "1.4.2: Take All",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_FileManager.File\",\r\n    \"TakeAll\": true,\r\n    // See 1.1.3\r\n    \"Partition\": {\r\n        \"IncludeChildSubPartitions\": true\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "The `TakeAll` field of a query is a boolean value (defaults to false) that, if set to `true`, causes the query to return _ALL_ records that match the query (ignoring the limit set by `Take`).\n\n> **WARNING**: This can cause the query to return many entities, which can significantly degrade performace or cause queries to time out if not used with extreme caution"
              },
              "response": [
                {
                  "name": "Get All Files",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_FileManager.File\",\r\n    \"TakeAll\": true,\r\n    // See 1.1.3\r\n    \"Partition\": {\r\n        \"IncludeChildSubPartitions\": true\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "7509"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "125"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:26:21 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 8,\n    \"entities\": [\n        {\n            \"id\": 50944242,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.547\",\n            \"ModifiedDateTime\": \"2025-07-25T13:01:23.627\",\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944242,\n            \"InstanceId\": 50944245,\n            \"RecycleBinLabel\": \"3.1.10 File.txt\",\n            \"ShortLabel\": \"3.1.10 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.10 File.txt\",\n            \"LongLabel\": \"File 3.1.10 File.txt\",\n            \"LockKey\": \"<State CreatedDateTime=\\\"6/25/2025 1:1:23 PM\\\" OwnerFirstName=\\\"{{App}}\\\" OwnerLastName=\\\"{{Dev}}\\\" PersonalDomainKey=\\\"{{undefined}}\\\" CurrentState=\\\"Locked\\\" />\",\n            \"Attachment\": {\n                \"identifier\": \"50944242-50944244\",\n                \"name\": \"3.1.10 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"entityDef\": \"kahua_FileManager.Folder\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944239,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.423\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944239,\n            \"InstanceId\": 50944239,\n            \"RecycleBinLabel\": \"3.1.9 File B.txt\",\n            \"ShortLabel\": \"3.1.9 File B.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.9 File B.txt\",\n            \"LongLabel\": \"File 3.1.9 File B.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944239-50944241\",\n                \"name\": \"3.1.9 File B.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944236,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.280\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944236,\n            \"InstanceId\": 50944236,\n            \"RecycleBinLabel\": \"3.1.9 File A.txt\",\n            \"ShortLabel\": \"3.1.9 File A.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.9 File A.txt\",\n            \"LongLabel\": \"File 3.1.9 File A.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944236-50944238\",\n                \"name\": \"3.1.9 File A.txt\"\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944233,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.157\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944233,\n            \"InstanceId\": 50944233,\n            \"RecycleBinLabel\": \"3.1.7 File.txt\",\n            \"ShortLabel\": \"3.1.7 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.7 File.txt\",\n            \"LongLabel\": \"File 3.1.7 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944233-50944235\",\n                \"name\": \"3.1.7 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944230,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.030\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944230,\n            \"InstanceId\": 50944230,\n            \"RecycleBinLabel\": \"3.1.6 File.txt\",\n            \"ShortLabel\": \"3.1.6 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.6 File.txt\",\n            \"LongLabel\": \"File 3.1.6 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944230-50944232\",\n                \"name\": \"3.1.6 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944227,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:22.890\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944227,\n            \"InstanceId\": 50944227,\n            \"RecycleBinLabel\": \"3.1.5 File.txt\",\n            \"ShortLabel\": \"3.1.5 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.5 File.txt\",\n            \"LongLabel\": \"File 3.1.5 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944227-50944229\",\n                \"name\": \"3.1.5 File.txt\"\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944224,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:22.763\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944224,\n            \"InstanceId\": 50944224,\n            \"RecycleBinLabel\": \"3.1.4 File.txt\",\n            \"ShortLabel\": \"3.1.4 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.4 File.txt\",\n            \"LongLabel\": \"File 3.1.4 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944224-50944226\",\n                \"name\": \"3.1.4 File.txt\"\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944221,\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"SyncWithFieldWire\": false,\n            \"SyncWithPlanGrid\": false,\n            \"SyncEnabled\": false,\n            \"MarkupEnabled\": false,\n            \"CreatedDateTime\": \"2025-07-25T13:01:22.610\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944221,\n            \"InstanceId\": 50944221,\n            \"RecycleBinLabel\": \"3.1.1 File.txt\",\n            \"ShortLabel\": \"3.1.1 File.txt\",\n            \"AppNameLabel\": \"File Manager\",\n            \"DetailLabel\": \"File: 3.1.1 File.txt\",\n            \"LongLabel\": \"File 3.1.1 File.txt\",\n            \"Attachment\": {\n                \"identifier\": \"50944221-50944223\",\n                \"name\": \"3.1.1 File.txt\"\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50944211,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            },
            {
              "name": "1.4.3: Sorting",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Sorts\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"ShortLabel\",\r\n            \"Direction\": \"Ascending\"\r\n        }\r\n    ],\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"ShortLabel\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Any\"\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "To sort the results of a query, the `Sorts` field is used. `Sorts` is an array of objects, each with the following properties:\n\n- `PropertyName`: Should be equal to `Data`\n    \n- `Path`: The path of the attribute to sort by\n    \n- `Direction`: Either `Ascending` or `Descending`\n    \n\nIf multiple sorts are specified, each one is performed in the order they are provided in. I.e., sort by the first sort, then by the second, then by the third, etc.."
              },
              "response": [
                {
                  "name": "Sort Contacts",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_PeopleManager.kahua_Contact\",\r\n    \"Sorts\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"ShortLabel\",\r\n            \"Direction\": \"Ascending\"\r\n        }\r\n    ],\r\n    // See 1.3.1\r\n    \"ScalarExplicits\": [\r\n        {\r\n            \"Path\": \"ShortLabel\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.1.2\r\n    \"Partition\": {\r\n        \"Scope\": \"Any\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "451"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "31"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:27:02 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 49709788,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShortLabel\": \"App Dev\"\n        },\n        {\n            \"id\": 50921785,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShortLabel\": \"Brandon Buckley\"\n        },\n        {\n            \"id\": 49711149,\n            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShortLabel\": \"Brandon Buckley\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            }
          ],
          "description": "This section details how to sort and select ranges of a query's results."
        },
        {
          "name": "1.99: Examples",
          "item": [
            {
              "name": "1.99.1: Get All Partitions",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_PartitionBase\",\r\n    // See 1.1.4\r\n    \"EntityDefMode\": \"Lineal\",\r\n    \"Partition\": {\r\n        // See 1.1.2\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "This query returns all partitions of all types in the domain (any entity that is a descendant of `PartitionBase`)."
              },
              "response": [
                {
                  "name": "Get All Partitions",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_PartitionBase\",\r\n    // See 1.1.4\r\n    \"EntityDefMode\": \"Lineal\",\r\n    \"Partition\": {\r\n        // See 1.1.2\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "30778"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "31"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:27:49 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 46,\n    \"entities\": [\n        {\n            \"id\": 50944219,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:22.153\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944219,\n            \"InstanceId\": 50944219,\n            \"Name\": \"3.1.13 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.13 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.13 Destination\",\n            \"ShortLabel\": \"3.1.13 Destination\",\n            \"LongLabel\": \"Folder 3.1.13 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.13 Destination\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944218,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:22.047\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944218,\n            \"InstanceId\": 50944218,\n            \"Name\": \"3.1.6 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.6 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.6 Destination\",\n            \"ShortLabel\": \"3.1.6 Destination\",\n            \"LongLabel\": \"Folder 3.1.6 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.6 Destination\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944217,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.937\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944217,\n            \"InstanceId\": 50944217,\n            \"Name\": \"3.1.5 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.5 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.5 Destination\",\n            \"ShortLabel\": \"3.1.5 Destination\",\n            \"LongLabel\": \"Folder 3.1.5 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.5 Destination\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944216,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.810\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944216,\n            \"InstanceId\": 50944216,\n            \"Name\": \"3.2.7 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.7 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.7 Folder\",\n            \"ShortLabel\": \"3.2.7 Folder\",\n            \"LongLabel\": \"Folder 3.2.7 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.7 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944215,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.700\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944215,\n            \"InstanceId\": 50944215,\n            \"Name\": \"3.2.6 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.6 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.6 Destination\",\n            \"ShortLabel\": \"3.2.6 Destination\",\n            \"LongLabel\": \"Folder 3.2.6 Destination\",\n            \"DetailLabel\": \"Folder: 3.2.6 Destination\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944214,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.590\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944214,\n            \"InstanceId\": 50944214,\n            \"Name\": \"3.2.6 Source\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.6 Source\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.6 Source\",\n            \"ShortLabel\": \"3.2.6 Source\",\n            \"LongLabel\": \"Folder 3.2.6 Source\",\n            \"DetailLabel\": \"Folder: 3.2.6 Source\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944213,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.480\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944213,\n            \"InstanceId\": 50944213,\n            \"Name\": \"3.2.5 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.5 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.5 Folder\",\n            \"ShortLabel\": \"3.2.5 Folder\",\n            \"LongLabel\": \"Folder 3.2.5 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.5 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944212,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.357\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50944211,\n            \"Id\": 50944212,\n            \"InstanceId\": 50944212,\n            \"Name\": \"3.2.1 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.1 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.1 Folder\",\n            \"ShortLabel\": \"3.2.1 Folder\",\n            \"LongLabel\": \"Folder 3.2.1 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.1 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50944211,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:01:21.247\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50944211,\n            \"InstanceId\": 50944211,\n            \"Name\": \"Kahua Postman Collection\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"RecycleBinLabel\": \"Kahua Postman Collection\",\n            \"ShortLabel\": \"Kahua Postman Collection\",\n            \"LongLabel\": \"Folder Kahua Postman Collection\",\n            \"DetailLabel\": \"Folder: Kahua Postman Collection\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50943775,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T20:35:17.953\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50943726,\n            \"Id\": 50943775,\n            \"InstanceId\": 50943775,\n            \"AppName\": \"kahua_FileManager\",\n            \"Name\": \"New Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Folder\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Folder\\\\New Folder\",\n            \"RecycleBinLabel\": \"New Folder\",\n            \"ShortLabel\": \"New Folder\",\n            \"LongLabel\": \"Folder New Folder\",\n            \"DetailLabel\": \"Folder: New Folder\"\n        },\n        {\n            \"id\": 50942501,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:56:02.803\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942493,\n            \"Id\": 50942501,\n            \"InstanceId\": 50942501,\n            \"AppName\": \"kahua_FileManager\",\n            \"Name\": \"New Folder 2\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"AppNameLabel\": \"File Manager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.5 Destination\\\\New Folder\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.5 Destination\\\\New Folder\\\\New Folder 2\",\n            \"RecycleBinLabel\": \"New Folder 2\",\n            \"ShortLabel\": \"New Folder 2\",\n            \"LongLabel\": \"Folder New Folder 2\",\n            \"DetailLabel\": \"Folder: New Folder 2\"\n        },\n        {\n            \"id\": 50942493,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:49:41.343\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942456,\n            \"Id\": 50942493,\n            \"InstanceId\": 50942493,\n            \"AppName\": \"kahua_FileManager\",\n            \"Name\": \"New Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.5 Destination\",\n            \"AppNameLabel\": \"File Manager\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.5 Destination\\\\New Folder\",\n            \"RecycleBinLabel\": \"New Folder\",\n            \"ShortLabel\": \"New Folder\",\n            \"LongLabel\": \"Folder New Folder\",\n            \"DetailLabel\": \"Folder: New Folder\"\n        },\n        {\n            \"id\": 50942398,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:36:45.773\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942397,\n            \"Id\": 50942398,\n            \"InstanceId\": 50942398,\n            \"Name\": \"1.2.4 Subfolder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\\\\1.2.4 Subfolder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"1.2.4 Subfolder\",\n            \"ShortLabel\": \"1.2.4 Subfolder\",\n            \"LongLabel\": \"Folder 1.2.4 Subfolder\",\n            \"DetailLabel\": \"Folder: 1.2.4 Subfolder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50942397,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:36:45.680\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942396,\n            \"Id\": 50942397,\n            \"InstanceId\": 50942397,\n            \"Name\": \"1.2.4 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"1.2.4 Folder\",\n            \"ShortLabel\": \"1.2.4 Folder\",\n            \"LongLabel\": \"Folder 1.2.4 Folder\",\n            \"DetailLabel\": \"Folder: 1.2.4 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50942384,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:36:11.290\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942383,\n            \"Id\": 50942384,\n            \"InstanceId\": 50942384,\n            \"Name\": \"1.2.4 Subfolder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\\\\1.2.4 Subfolder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"1.2.4 Subfolder\",\n            \"ShortLabel\": \"1.2.4 Subfolder\",\n            \"LongLabel\": \"Folder 1.2.4 Subfolder\",\n            \"DetailLabel\": \"Folder: 1.2.4 Subfolder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50942383,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:36:11.180\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942382,\n            \"Id\": 50942383,\n            \"InstanceId\": 50942383,\n            \"Name\": \"1.2.4 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"1.2.4 Folder\",\n            \"ShortLabel\": \"1.2.4 Folder\",\n            \"LongLabel\": \"Folder 1.2.4 Folder\",\n            \"DetailLabel\": \"Folder: 1.2.4 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50942348,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:32:31.533\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942347,\n            \"Id\": 50942348,\n            \"InstanceId\": 50942348,\n            \"Name\": \"1.2.4 Subfolder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\\\\1.2.4 Subfolder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"1.2.4 Subfolder\",\n            \"ShortLabel\": \"1.2.4 Subfolder\",\n            \"LongLabel\": \"Folder 1.2.4 Subfolder\",\n            \"DetailLabel\": \"Folder: 1.2.4 Subfolder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50942347,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-24T14:32:31.423\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50942346,\n            \"Id\": 50942347,\n            \"InstanceId\": 50942347,\n            \"Name\": \"1.2.4 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\1.2.4 Root\\\\1.2.4 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"1.2.4 Folder\",\n            \"ShortLabel\": \"1.2.4 Folder\",\n            \"LongLabel\": \"Folder 1.2.4 Folder\",\n            \"DetailLabel\": \"Folder: 1.2.4 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50926920,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926920,\n            \"InstanceId\": 50926920,\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_DeletedList\",\n            \"Type\": \"Deleted\",\n            \"Name\": \"Deleted\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Deleted\"\n        },\n        {\n            \"id\": 50926919,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926919,\n            \"InstanceId\": 50926919,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Workflow\",\n            \"Name\": \"TaskList\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\TaskList\"\n        },\n        {\n            \"id\": 50926918,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926918,\n            \"InstanceId\": 50926918,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Master\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Master\"\n        },\n        {\n            \"id\": 50926917,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 2,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926917,\n            \"InstanceId\": 50926917,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Vendor\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Vendor\"\n        },\n        {\n            \"id\": 50926916,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DisplayOrder\": 3,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926916,\n            \"InstanceId\": 50926916,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Customer\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Customer\"\n        },\n        {\n            \"id\": 50926915,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50926915,\n            \"InstanceId\": 50926915,\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"Name\": \"PreConstruction\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\PreConstruction\"\n        },\n        {\n            \"id\": 50926914,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"ModifiedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:43.180\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 2,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50926914,\n            \"InstanceId\": 50926914,\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Name\": \"Construction\",\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"Path\": \"\\\\Postman\\\\Construction\"\n        },\n        {\n            \"id\": 50926912,\n            \"entityDef\": \"kahua_Project.Project\",\n            \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsArchived\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsPending\": false,\n            \"IsTaxable\": false,\n            \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n            \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n            \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 2,\n            \"CurrencyRateTypeId\": 2124,\n            \"CurrencyRateId\": 3466,\n            \"Id\": 50926912,\n            \"InstanceId\": 50940224,\n            \"Number\": \"0003\",\n            \"ProjectCurrency\": \"USD\",\n            \"CurrencyCode\": \"USD\",\n            \"Name\": \"Postman\",\n            \"PartitionItemState\": \"Live\",\n            \"PartitionItemType\": \"Project\",\n            \"Description\": \"hi :)\",\n            \"Path\": \"\\\\Postman\",\n            \"AppNameLabel\": \"Workflow Labels\",\n            \"DetailLabel\": \"Project: Postman\",\n            \"LongLabel\": \"Postman\",\n            \"ShortLabel\": \"Postman\"\n        },\n        {\n            \"id\": 50926872,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-17T21:28:05.520\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50893034,\n            \"PartitionId\": 50926842,\n            \"Id\": 50926872,\n            \"InstanceId\": 50926872,\n            \"Name\": \"3.1.6 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.6 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.6 Destination\",\n            \"ShortLabel\": \"3.1.6 Destination\",\n            \"LongLabel\": \"Folder 3.1.6 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.6 Destination\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50926871,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-17T21:28:05.397\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50893034,\n            \"PartitionId\": 50926842,\n            \"Id\": 50926871,\n            \"InstanceId\": 50926871,\n            \"Name\": \"3.1.5 Destination\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.1.5 Destination\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.1.5 Destination\",\n            \"ShortLabel\": \"3.1.5 Destination\",\n            \"LongLabel\": \"Folder 3.1.5 Destination\",\n            \"DetailLabel\": \"Folder: 3.1.5 Destination\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50926870,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-17T21:28:05.253\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50893034,\n            \"PartitionId\": 50926842,\n            \"Id\": 50926870,\n            \"InstanceId\": 50926870,\n            \"Name\": \"3.2.7 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.7 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.7 Folder\",\n            \"ShortLabel\": \"3.2.7 Folder\",\n            \"LongLabel\": \"Folder 3.2.7 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.7 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50926869,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-17T21:28:05.127\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50893034,\n            \"PartitionId\": 50926842,\n            \"Id\": 50926869,\n            \"InstanceId\": 50926869,\n            \"Name\": \"3.2.5 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.5 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.5 Folder\",\n            \"ShortLabel\": \"3.2.5 Folder\",\n            \"LongLabel\": \"Folder 3.2.5 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.5 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50926868,\n            \"entityDef\": \"kahua_FileManager.Folder\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-17T21:28:05.003\",\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50893034,\n            \"PartitionId\": 50926842,\n            \"Id\": 50926868,\n            \"InstanceId\": 50926868,\n            \"Name\": \"3.2.1 Folder\",\n            \"AppName\": \"kahua_FileManager\",\n            \"PartitionPath\": \"\\\\Postman\\\\Kahua Postman Collection\",\n            \"Path\": \"\\\\Postman\\\\Kahua Postman Collection\\\\3.2.1 Folder\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"RecycleBinLabel\": \"3.2.1 Folder\",\n            \"ShortLabel\": \"3.2.1 Folder\",\n            \"LongLabel\": \"Folder 3.2.1 Folder\",\n            \"DetailLabel\": \"Folder: 3.2.1 Folder\",\n            \"AppNameLabel\": \"File Manager\"\n        },\n        {\n            \"id\": 50920881,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"ModifiedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50920873,\n            \"PartitionId\": 50920873,\n            \"Id\": 50920881,\n            \"InstanceId\": 50920881,\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_DeletedList\",\n            \"Type\": \"Deleted\",\n            \"Name\": \"Deleted\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\domain proj\",\n            \"PartitionPath\": \"\\\\domain proj\",\n            \"Path\": \"\\\\domain proj\\\\Deleted\"\n        },\n        {\n            \"id\": 50920880,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"ModifiedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50920873,\n            \"PartitionId\": 50920873,\n            \"Id\": 50920880,\n            \"InstanceId\": 50920880,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Workflow\",\n            \"Name\": \"TaskList\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\domain proj\",\n            \"PartitionPath\": \"\\\\domain proj\",\n            \"Path\": \"\\\\domain proj\\\\TaskList\"\n        },\n        {\n            \"id\": 50920879,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"ModifiedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50920873,\n            \"PartitionId\": 50920873,\n            \"Id\": 50920879,\n            \"InstanceId\": 50920879,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Master\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\domain proj\",\n            \"PartitionPath\": \"\\\\domain proj\",\n            \"Path\": \"\\\\domain proj\\\\Master\"\n        },\n        {\n            \"id\": 50920878,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"ModifiedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 2,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50920873,\n            \"PartitionId\": 50920873,\n            \"Id\": 50920878,\n            \"InstanceId\": 50920878,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Vendor\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\domain proj\",\n            \"PartitionPath\": \"\\\\domain proj\",\n            \"Path\": \"\\\\domain proj\\\\Vendor\"\n        },\n        {\n            \"id\": 50920877,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"ModifiedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"HostDomainPartitionId\": 0,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DisplayOrder\": 3,\n            \"DomainPartitionId\": 50920873,\n            \"PartitionId\": 50920873,\n            \"Id\": 50920877,\n            \"InstanceId\": 50920877,\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Name\": \"Customer\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\domain proj\",\n            \"PartitionPath\": \"\\\\domain proj\",\n            \"Path\": \"\\\\domain proj\\\\Customer\"\n        },\n        {\n            \"id\": 50920876,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"ModifiedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"DomainPartitionId\": 50920873,\n            \"PartitionId\": 50920873,\n            \"Id\": 50920876,\n            \"InstanceId\": 50920876,\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"Name\": \"PreConstruction\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DomainPartitionPath\": \"\\\\domain proj\",\n            \"PartitionPath\": \"\\\\domain proj\",\n            \"Path\": \"\\\\domain proj\\\\PreConstruction\"\n        },\n        {\n            \"id\": 50920875,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsArchived\": false,\n            \"IsClosed\": false,\n            \"IsPending\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"ModifiedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.553\",\n            \"HostDomainPartitionId\": 0,\n            \"DisplayOrder\": 2,\n            \"PortableViewInstance\": 2,\n            \"Instance\": 2,\n            \"PartitionId\": 50920873,\n            \"DomainPartitionId\": 50920873,\n            \"Id\": 50920875,\n            \"InstanceId\": 50920875,\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Name\": \"Construction\",\n            \"Type\": \"Default\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"PartitionPath\": \"\\\\domain proj\",\n            \"DomainPartitionPath\": \"\\\\domain proj\",\n            \"Path\": \"\\\\domain proj\\\\Construction\"\n        },\n        {\n            \"id\": 50920873,\n            \"entityDef\": \"kahua_Project.Project\",\n            \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsArchived\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsPending\": false,\n            \"IsTaxable\": false,\n            \"CurrencyRateLastModifiedDateTime\": \"2025-07-16T14:54:49.380\",\n            \"CreatedDateTime\": \"2025-07-16T14:54:49.397\",\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"CurrencyRateTypeId\": 2124,\n            \"CurrencyRateId\": 3466,\n            \"InstanceId\": 50920873,\n            \"Id\": 50920873,\n            \"Number\": \"0002\",\n            \"ProjectCurrency\": \"USD\",\n            \"CurrencyCode\": \"USD\",\n            \"Name\": \"domain proj\",\n            \"PartitionItemState\": \"Live\",\n            \"PartitionItemType\": \"Project\",\n            \"Path\": \"\\\\domain proj\",\n            \"AppNameLabel\": \"Workflow Labels\",\n            \"DetailLabel\": \"Project: domain proj\",\n            \"LongLabel\": \"domain proj\",\n            \"ShortLabel\": \"domain proj\"\n        },\n        {\n            \"id\": 49709838,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsClosed\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:17.677\",\n            \"HostDomainPartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"DisplayOrder\": 2,\n            \"Id\": 49709838,\n            \"InstanceId\": 49709838,\n            \"Name\": \"Construction\",\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Type\": \"Default\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Path\": \"\\\\Construction\"\n        },\n        {\n            \"id\": 49709837,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsClosed\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:17.660\",\n            \"HostDomainPartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"Instance\": 1,\n            \"Id\": 49709837,\n            \"InstanceId\": 49709837,\n            \"Name\": \"PreConstruction\",\n            \"AppName\": \"kahua_AEC_RFI\",\n            \"Type\": \"Default\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Path\": \"\\\\PreConstruction\"\n        },\n        {\n            \"id\": 49709804,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsClosed\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:14.573\",\n            \"HostDomainPartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"DisplayOrder\": 3,\n            \"Id\": 49709804,\n            \"InstanceId\": 49709804,\n            \"Name\": \"Customer\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Type\": \"Default\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Path\": \"\\\\Customer\"\n        },\n        {\n            \"id\": 49709803,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsClosed\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:14.557\",\n            \"HostDomainPartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"DisplayOrder\": 2,\n            \"Id\": 49709803,\n            \"InstanceId\": 49709803,\n            \"Name\": \"Vendor\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Type\": \"Default\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Path\": \"\\\\Vendor\"\n        },\n        {\n            \"id\": 49709802,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsClosed\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:14.540\",\n            \"HostDomainPartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"Instance\": 1,\n            \"Id\": 49709802,\n            \"InstanceId\": 49709802,\n            \"Name\": \"Master\",\n            \"AppName\": \"kahua_Catalog\",\n            \"Type\": \"Default\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Path\": \"\\\\Master\"\n        },\n        {\n            \"id\": 49709713,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"AllowDelete\": false,\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsClosed\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:08.313\",\n            \"HostDomainPartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"DisplayOrder\": 1,\n            \"Instance\": 1,\n            \"Id\": 49709713,\n            \"InstanceId\": 49709713,\n            \"Name\": \"TaskList\",\n            \"AppName\": \"kahua_Workflow\",\n            \"Type\": \"Default\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Path\": \"\\\\TaskList\"\n        },\n        {\n            \"id\": 49709712,\n            \"entityDef\": \"kahua_Core.kahua_AppList\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"AllowRename\": false,\n            \"AllowReorder\": false,\n            \"IsClosed\": false,\n            \"AllowDelete\": false,\n            \"IsDefault\": true,\n            \"ClosedDateTime\": \"1753-01-01T00:00:00.000\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:07.920\",\n            \"PartitionId\": 0,\n            \"HostDomainPartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"Instance\": 1,\n            \"DisplayOrder\": 1,\n            \"Id\": 49709712,\n            \"InstanceId\": 49709712,\n            \"Type\": \"Deleted\",\n            \"Name\": \"Deleted\",\n            \"AppName\": \"kahua_DeletedList\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Path\": \"\\\\Deleted\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354814\n}"
                }
              ]
            },
            {
              "name": "1.99.2: Timestamped Query",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    // See 1.1.4\r\n    \"EntityDefs\": \"kahua_DeletedList.kahua_DeletedListItem,kahua_AEC_DailyReport.DailyReport\",\r\n    \"EntityDefMode\": \"Multiple\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Range\": \"{{project}},0\",\r\n        \"IncludeChildPartitionsInRange\": true,\r\n        \"IncludeChildAppPartitions\": true,\r\n        \"ChildAppPartitionsAppName\": \"kahua_DeletedList\"\r\n    },\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"DeletedEntity\"\r\n        }\r\n    ],\r\n    // See 1.4.1\r\n    \"Skip\": 0,\r\n    \"Take\": 100,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AnyOf\",\r\n            \"_children\": [\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AllOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.3\r\n                        {\r\n                            \"PropertyName\": \"HubPath\",\r\n                            \"Type\": \"StartsWith\",\r\n                            \"Value\": \"kahua_AEC_DailyReport.\"\r\n                        },\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"CreatedDateTime\",\r\n                            \"Type\": \"LessThanOrEqualTo\",\r\n                            \"Value\": \"{{kpc-seed-isoTime}}\"\r\n                        },\r\n                        // See 1.2.5\r\n                        {\r\n                            \"PropertyName\": \"Link\",\r\n                            \"Path\": \"Partition\",\r\n                            \"ToEntityRange\": \"{{project}}\"\r\n                            // If you want to query entities from the domain root, use this instead:\r\n                            /*\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"{{project}}\"\r\n                            */\r\n                        }\r\n                        // Example of adding an extra condition\r\n                        /*\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"Notes\",\r\n                            \"Type\": \"StartsWith\",\r\n                            \"Value\": \"2\",\r\n                            \"IsDynamic\": true,\r\n                            \"DataType\": \"Text\"\r\n                        }\r\n                        */\r\n                    ]\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AllOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.3\r\n                        {\r\n                            \"PropertyName\": \"HubPath\",\r\n                            \"Type\": \"StartsWith\",\r\n                            \"Value\": \"kahua_DeletedList.\"\r\n                        },\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"CreatedDateTime\",\r\n                            \"Type\": \"GreaterThanOrEqualTo\",\r\n                            \"Value\": \"{{kpc-seed-isoTime}}\"\r\n                        },\r\n                        // See 1.2.5\r\n                        {\r\n                            \"PropertyName\": \"Link\",\r\n                            \"Path\": \"DeletedPartition\",\r\n                            \"ToEntityRange\": \"{{project}}\"\r\n                            // If you want to query entities from the domain root, use this instead:\r\n                            /*\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"DeletedEntity.PartitionId\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"{{project}}\"\r\n                            */\r\n                        },\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"DeletedAppName\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"kahua_AEC_DailyReport\"\r\n                        }\r\n                        // Example of adding an extra condition\r\n                        /*\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"DeletedEntity.Notes\",\r\n                            \"Type\": \"StartsWith\",\r\n                            \"Value\": \"2\",\r\n                            \"IsDynamic\": true,\r\n                            \"DataType\": \"Text\"\r\n                        }\r\n                        */\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "When using multiple queries to get a large amount of entities, it is possible an entity to get deleted or created between queries. This will offset the results of the query, which could yield erroneous results when combining the results of all the queries together.\n\nTo avoid this, this query only returns entities that were either _created before_ or _deleted after_ the start of the first query.\n\nWhen an entity is deleted, a `kahua_DeletedList.kahua_DeletedListItem` entity is created in an app list called `Deleted` under the Recycle Bin app. But, the Recycle Bin app is a domain-scoped app, so simply using `IncludeChildAppPartitions` would not work unless `:partitionId` is equal to zero. Instead, this query uses `Range` (with `IncludeChildPartitionsInRange` enabled) to include both `:partitionId` and the root of the domain. From this point, enabling `IncludeChildAppPartitions` will include the Recycle Bin's app list. Lastly, `ChildAppPartitionsAppName` is set such that only the Recycle Bin's app list is included in the query. Since, without it, other app list would also get searched (e.g., RFIs Preconstruction and Construction), which is unnecessary.\n\nUnfortunately, adding extra conditions requires duplicating the conditions across both elements of the `AnyOf` condition (one to filter against the original entities being queried, and the other to filter against the `DeletedEntity` of the `DeletedListItem` entities). If adding a `Data` condition, it must use `IsDynamic` (see 1.2.1) or else the query will return `400 Bad Request` because of how attributes are resolved in the `Multiple` mode (see 1.1.4)."
              },
              "response": [
                {
                  "name": "Get Daily Reports",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    // See 1.1.4\r\n    \"EntityDefs\": \"kahua_DeletedList.kahua_DeletedListItem,kahua_AEC_DailyReport.DailyReport\",\r\n    \"EntityDefMode\": \"Multiple\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Range\": \"50926912,0\",\r\n        \"IncludeChildPartitionsInRange\": true,\r\n        \"IncludeChildAppPartitions\": true,\r\n        \"ChildAppPartitionsAppName\": \"kahua_DeletedList\"\r\n    },\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"DeletedEntity\"\r\n        }\r\n    ],\r\n    // See 1.4.1\r\n    \"Skip\": 0,\r\n    \"Take\": 100,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AnyOf\",\r\n            \"_children\": [\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AllOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.3\r\n                        {\r\n                            \"PropertyName\": \"HubPath\",\r\n                            \"Type\": \"StartsWith\",\r\n                            \"Value\": \"kahua_AEC_DailyReport.\"\r\n                        },\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"CreatedDateTime\",\r\n                            \"Type\": \"LessThanOrEqualTo\",\r\n                            \"Value\": \"2025-07-25T13:28:40.526Z\"\r\n                        },\r\n                        // See 1.2.5\r\n                        {\r\n                            \"PropertyName\": \"Link\",\r\n                            \"Path\": \"Partition\",\r\n                            \"ToEntityRange\": \"50926912\"\r\n                        }\r\n                    ]\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AllOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.3\r\n                        {\r\n                            \"PropertyName\": \"HubPath\",\r\n                            \"Type\": \"StartsWith\",\r\n                            \"Value\": \"kahua_DeletedList.\"\r\n                        },\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"CreatedDateTime\",\r\n                            \"Type\": \"GreaterThanOrEqualTo\",\r\n                            \"Value\": \"2025-07-25T13:28:40.526Z\"\r\n                        },\r\n                        // See 1.2.5\r\n                        {\r\n                            \"PropertyName\": \"Link\",\r\n                            \"Path\": \"DeletedPartition\",\r\n                            \"ToEntityRange\": \"50926912\"\r\n                        },\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"DeletedAppName\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"kahua_AEC_DailyReport\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "6801"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "109"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:29:21 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 50944258,\n            \"entityDef\": \"kahua_DeletedList.kahua_DeletedListItem\",\n            \"hubPath\": \"kahua_DeletedList.DeletedList\\\\Start\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T13:29:19.287\",\n            \"DomainPartitionId\": 0,\n            \"Instance\": 1,\n            \"PartitionId\": 49709712,\n            \"Id\": 50944258,\n            \"InstanceId\": 50944258,\n            \"DeletedAppName\": \"kahua_AEC_DailyReport\",\n            \"EntityDefLabel\": \"Daily Report\",\n            \"DeletedEntity\": {\n                \"id\": 50944248,\n                \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n                \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n                \"outwardReferences\": [],\n                \"MarkupEnabled\": false,\n                \"IsExchangeEntity\": false,\n                \"AddWeatherOnSave\": false,\n                \"CopyDailyReportMaterials\": false,\n                \"IsLostDay\": false,\n                \"Date\": \"2025-07-25T00:00:00\",\n                \"CreatedDateTime\": \"2025-07-25T13:01:24.000\",\n                \"ModifiedDateTime\": \"2025-07-25T13:05:18.963\",\n                \"TotalInternalLabor\": 0,\n                \"TotalLaborUnits\": 0,\n                \"LostDayDateDueOffset\": 0,\n                \"CompanyCount\": 0,\n                \"DomainPartitionId\": 0,\n                \"Instance\": 2,\n                \"PartitionId\": 49709712,\n                \"Id\": 50944248,\n                \"InstanceId\": 50944254,\n                \"Number\": \"0021\",\n                \"Notes\": \"2.2.1 DR: Dolorem est culpa officia dolores quaerat et qui.\",\n                \"LongLabel\": \"Daily Report: 7/25/2025\",\n                \"DetailLabel\": \"Daily Report: 7/25/2025\",\n                \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n                \"ShortLabel\": \"Daily Report: 7/25/2025\",\n                \"AppNameLabel\": \"Daily Reports\",\n                \"AutomationLabel\": \"0021 App Dev\",\n                \"CreatedBy\": {\n                    \"id\": 49711149,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                },\n                \"Author\": {\n                    \"id\": 49709788,\n                    \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"IsEmployee\": false,\n                    \"MarkupEnabled\": false,\n                    \"IsDomainUser\": true,\n                    \"IsInSyncWithCommunity\": true,\n                    \"IsPublished\": true,\n                    \"IsDomainAdmin\": true,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:13.710\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:13.977\",\n                    \"PartitionId\": 0,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 2,\n                    \"Instance\": 3,\n                    \"Id\": 49709788,\n                    \"InstanceId\": 49709797,\n                    \"EmailAddress\": \"kahuaappdev@gmail.com\",\n                    \"FirstName\": \"App\",\n                    \"LastName\": \"Dev\",\n                    \"PersonId\": \"77558b3f-78a4-4b9c-989d-1f49aa150c25\",\n                    \"SourceApp\": \"kahua_PeopleManager\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"ContactCompanyLabel\": \"App Dev - BBuckleyCo\",\n                    \"ContactFullNameLabel\": \"App Dev\",\n                    \"ShortLabel\": \"App Dev\",\n                    \"CompanyContactLabel\": \"BBuckleyCo - App Dev\",\n                    \"LongLabel\": \"App Dev (kahuaappdev@gmail.com)\",\n                    \"DetailLabel\": \"Name: App Dev\",\n                    \"FullTextIndexContent\": \"App Dev BBuckleyCo\",\n                    \"ProfilePhoto\": {\n                        \"identifier\": \"49709788-49709793\",\n                        \"name\": \"default_profile_photo.png\"\n                    },\n                    \"Company\": {\n                        \"id\": 49709785,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"Office\": {\n                        \"id\": 49709783,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    }\n                },\n                \"Partition\": {\n                    \"id\": 50926912,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                },\n                \"DomainPartition\": {\n                    \"id\": 50926912,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                }\n            },\n            \"Partition\": {\n                \"id\": 49709712,\n                \"entityDef\": \"kahua_Core.kahua_AppList\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsEmployee\": false,\n                \"MarkupEnabled\": false,\n                \"IsDomainUser\": true,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainAdmin\": true,\n                \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                \"DomainPartitionId\": 0,\n                \"Instance\": 3,\n                \"PortableViewInstance\": 3,\n                \"PartitionId\": 49709712,\n                \"Id\": 49711149,\n                \"InstanceId\": 49711160,\n                \"EmailAddress\": \"bbuckley@kahua.com\",\n                \"FirstName\": \"Brandon\",\n                \"LastName\": \"Buckley\",\n                \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                \"SourceApp\": \"kahua_PeopleManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                \"ContactFullNameLabel\": \"Brandon Buckley\",\n                \"ShortLabel\": \"Brandon Buckley\",\n                \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                \"DetailLabel\": \"Name: Brandon Buckley\",\n                \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                \"ProfilePhoto\": {\n                    \"identifier\": \"49711149-49711154\",\n                    \"name\": \"default_profile_photo.png\"\n                },\n                \"Company\": {\n                    \"id\": 49709785,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                \"Office\": {\n                    \"id\": 49709783,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            },\n            \"DeletedDomainPartition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DeletedPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944247,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"Date\": \"2025-07-25T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.890\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50944247,\n            \"InstanceId\": 50944247,\n            \"Number\": \"0020\",\n            \"Notes\": \"2.1.3 DR: Aut eveniet ut reprehenderit voluptas eligendi sunt provident.\",\n            \"LongLabel\": \"Daily Report: 7/25/2025\",\n            \"DetailLabel\": \"Daily Report: 7/25/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0020 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944246,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"MarkupEnabled\": false,\n            \"Date\": \"2025-07-25T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-25T13:01:23.783\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"CompanyCount\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"Instance\": 1,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50944246,\n            \"InstanceId\": 50944246,\n            \"Number\": \"0019\",\n            \"Notes\": \"2.1.2 DR: Aut autem minus.\",\n            \"LongLabel\": \"Daily Report: 7/25/2025\",\n            \"DetailLabel\": \"Daily Report: 7/25/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n            \"ShortLabel\": \"Daily Report: 7/25/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0019 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354821\n}"
                }
              ]
            }
          ]
        }
      ],
      "description": "Queries return entities from Kahua apps. They are highly customizable, supporting any combination of conditions, nesting, and sorting on entity attributes (see Sections 1.2, 1.3, and 1.4 respectively). Specifically, the queries in this section are called _ad-hoc queries_ since they are not predefined inside of the app's hub definition.\n\nAll queries are executed by making a `POST` request to the following URL: `https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query`\n\nAd-hoc queries can be automatically generated from any query inside of kBuilder. Right click on the query to convert and select \"Generate Ad-Hoc\" to copy the JSON to the clipboard.\n\nThe response body of all ad-hoc queries is an object with the following fields:\n\n- `count`: The total number of entities returned by the query\n    \n- `entities`: A list of objects, each with the following fields:\n    \n    - `id`: The ID of the entity\n        \n    - `entityDef`: The full name of the entity's EntityDef\n        \n    - `hubPath` : The hub path (workflow step) of the entity\n        \n    - All of the attributes of the entity. Nested entities do not have any attribute values, only basic metadata (see 1.3.2 to include these)\n        \n- `skipped`: Equal to `Skip`, see 1.4.1\n    \n- `taken`: Equal to `Take`, see 1.4.1\n    \n- `marker`: See 5.3.3"
    },
    {
      "name": "2: Activities",
      "item": [
        {
          "name": "2.0: Hub Activities",
          "item": [
            {
              "name": "2.0.1: Run Hub Activity",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"sets\": []\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/:activityName/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    ":activityName",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_Location"
                    },
                    {
                      "key": "activityName",
                      "value": "GetLocations"
                    }
                  ]
                },
                "description": "This endpoint runs an activity `:activityName` inside of the HubDef of `:appName`.\n\nThe body of the request contains the following fields:\n\n- `sets`: An array of objects, each with the following fields:\n    \n    - `Name`: The name of the set. This needs to be the same name as the one in the `Iterate` directive of the flow in the activity being called\n        \n    - `entities`: Same as the `entities` field of a ad-hoc query (see Section 1)\n        \n- `listIdentifier`: Either:\n    \n    - `0` or `None` (default): Don't use app lists in the activity\n        \n    - `1` or `ById`: Use the app list specified by `listId` in the activity\n        \n- `listId`: The ID of an app list to use in the activity. For example, the \"RFIs\" app has two app lists: \"Construction\" and \"Pre-Construction.\" The app lists that any RFI resides in is stored in the `PartitionId` attribute. That value can be passed into `listId` to use that app list in the activity.\n    \n\nThe response body is mostly a copy of the request body, except the results of any `DataQuery` elements (see Section 2.1) are added to the `sets` list. Note that this can cause there to be multiple sets with the same name in the response (if one of the input sets has the same name as one of the `DataQuery` element's sets).\n\n> _**NOTE**_: `listId` and `listIdentifier` only apply to `DataQuery` elements of the activity's `Flow`. If you would like to create entities in a particular app list, see 2.1.1"
              },
              "response": [
                {
                  "name": "Run kahua_Location HubDef DataQuery",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"sets\": []\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/:activityName/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        ":activityName",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_Location"
                        },
                        {
                          "key": "activityName",
                          "value": "GetLocations"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "9921"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:37:09 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"Locations\",\n            \"entities\": [\n                {\n                    \"id\": 50944253,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-25T13:01:24.220\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944253,\n                    \"InstanceId\": 50944253,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"Mf7lM4g080uPYcc2fBdvBQ\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"entityDef\": \"kahua_Project.Project\",\n                            \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50943764,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-24T20:16:14.653\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50943764,\n                    \"InstanceId\": 50943764,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"yCkX2l4XT06Z5K-b8xXqrQ\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50942576,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-24T15:01:31.060\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50942576,\n                    \"InstanceId\": 50942576,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"cN9-aVegdEaJJfujH_3W0Q\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50942492,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-24T14:42:53.423\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50942492,\n                    \"InstanceId\": 50942492,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"fMlK4-nfqEKV7Q6G1kW3wQ\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50942442,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-24T14:36:48.407\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50942442,\n                    \"InstanceId\": 50942442,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"mDG6P5xZzUOz2uTBbNwwOw\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50942358,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-24T14:32:32.300\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50942358,\n                    \"InstanceId\": 50942358,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"jsUaqkr3-k-pN-0BjQdZUg\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50942155,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-24T13:29:41.633\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50942155,\n                    \"InstanceId\": 50942155,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"j-megpGEZ02GrQY08JL66w\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50938068,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-22T17:23:54.173\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50938068,\n                    \"InstanceId\": 50938068,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"tekNGy7WEUaHH942_1wEaQ\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50937715,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-22T13:11:54.787\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50937715,\n                    \"InstanceId\": 50937715,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"JtmzSPxR4EWaYthm8ZjmNw\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50937666,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-22T13:10:09.623\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50937666,\n                    \"InstanceId\": 50937666,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"PIMn0buO-Uu04iXT8njocQ\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50937613,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"CreatedDateTime\": \"2025-07-22T13:01:11.937\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50937613,\n                    \"InstanceId\": 50937613,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"APMCMuxLN0is2czlpXz95Q\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 50932424,\n                    \"entityDef\": \"kahua_Location.Location\",\n                    \"hubPath\": \"kahua_Location.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"DataScope_IsDomain\": false,\n                    \"MarkupEnabled\": false,\n                    \"CreatedDateTime\": \"2025-07-21T18:42:09.363\",\n                    \"PartitionId\": 0,\n                    \"DomainPartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50932424,\n                    \"InstanceId\": 50932424,\n                    \"Status\": \"Active\",\n                    \"ExtIdentifier\": \"w8Ja3q42ykCABRyCG7tRqg\",\n                    \"Name\": \"KPC Seed Location\",\n                    \"Type\": \"Area/Structure\",\n                    \"LongLabel\": \"KPC Seed Location\",\n                    \"DetailLabel\": \"KPC Seed Location\",\n                    \"RecycleBinLabel\": \"KPC Seed Location\",\n                    \"ParentPath\": \"KPC Seed Location\",\n                    \"ShortLabel\": \"KPC Seed Location\",\n                    \"AppNameLabel\": \"Locations\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"DataScope_Projects\": [\n                        {\n                            \"id\": 50926912,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            }
          ],
          "description": "This section details how to run activities that are specified inside of a HubDef."
        },
        {
          "name": "2.1: Basic Ad-Hoc Activities",
          "item": [
            {
              "name": "2.1.1: Creating Entities",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"New\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 0,\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n                    \"Notes\": \"Created by 2.1.1: {{$randomLoremSentence}}\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    }
                  ]
                },
                "description": "This activity creates a set of new entities. Specifically, this creates a Daily Report.\n\nWhen creating entities, an `id` of zero is passed in the set to indicate that a new entity should be created. The `New` field of the `Iterate` directive of the activity's `Flow` must be set; however, it can be an empty object if no directives are needed.\n\nIf the entity is to be created inside of an App List, set `:partitionId` to the ID of the App List instead of the project's ID.\n\n> **WARNING**: If you pass the ID of the project instead of the App List into the URL, you will be unable to access the created entities from within Kahua. To delete these invalid entities use 2.1.3. Note that you may need to query the entities to get their IDs first. To do this, run a query against the project (or whichever partition you passed into the URL) without including the App Lists (ensure that `IncludeChildAppPartitions` is either not specified or `false`; see 1.1.3) \n  \n\nIf an `Assertion` directive fails during the execution of the activity, then the response body will be the following:\n\n``` json\n{\n    \"errorCode\": \"Assertion_Failed\",\n    \"message\": \"The following assertions were not met:\\r\\n(message 1)\\r\\n(message 2)...\"\n}\n\n ```\n\nUnfortunately, the Save directives on the Step are not accessible via an activity. In addition, there is no way to know which entity in the set is causing the assertion to fail."
              },
              "response": [
                {
                  "name": "Create Daily Report",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"New\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 0,\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n                    \"Notes\": \"Created by 2.1.1: Et commodi aut qui eum praesentium id temporibus aspernatur sint.\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "3661"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "79"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:39:08 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"Activity\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"MySet\",\n                \"New\": {}\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"MySet\",\n            \"entities\": [\n                {\n                    \"id\": 50944262,\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n                    \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"Number\": \"0022\",\n                    \"Date\": \"2025-07-25T00:00:00.000\",\n                    \"TotalInternalLabor\": 0,\n                    \"TotalLaborUnits\": 0,\n                    \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n                    \"AppNameLabel\": \"Daily Reports\",\n                    \"DetailLabel\": \"Daily Report: 7/25/2025\",\n                    \"LongLabel\": \"Daily Report: 7/25/2025\",\n                    \"ShortLabel\": \"Daily Report: 7/25/2025\",\n                    \"CreatedDateTime\": \"2025-07-25T13:39:08.941\",\n                    \"CompanyCount\": 0,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"InstanceId\": 50944262,\n                    \"Instance\": 1,\n                    \"Id\": 50944262,\n                    \"LostDayDateDueOffset\": 0,\n                    \"IsExchangeEntity\": false,\n                    \"MarkupEnabled\": false,\n                    \"IsLostDay\": false,\n                    \"CopyDailyReportMaterials\": false,\n                    \"AddWeatherOnSave\": false,\n                    \"Notes\": \"Created by 2.1.1: Et commodi aut qui eum praesentium id temporibus aspernatur sint.\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                        \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 3,\n                        \"PortableViewInstance\": 3,\n                        \"PartitionId\": 49709712,\n                        \"Id\": 49711149,\n                        \"InstanceId\": 49711160,\n                        \"EmailAddress\": \"bbuckley@kahua.com\",\n                        \"FirstName\": \"Brandon\",\n                        \"LastName\": \"Buckley\",\n                        \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"Brandon Buckley\",\n                        \"ShortLabel\": \"Brandon Buckley\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                        \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                        \"DetailLabel\": \"Name: Brandon Buckley\",\n                        \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49711149-49711154\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"Author\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"Partition\": {\n                        \"id\": 50926912,\n                        \"entityDef\": \"kahua_Project.Project\",\n                        \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsArchived\": false,\n                        \"IsCountedDisabled\": false,\n                        \"IsManual\": false,\n                        \"IsMarkup\": false,\n                        \"IsPending\": false,\n                        \"IsTaxable\": false,\n                        \"MarkupEnabled\": false,\n                        \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n                        \"CurrencyRateToDomain\": 1,\n                        \"CurrencyRateToDocument\": 1,\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 2,\n                        \"CurrencyRateTypeId\": 2124,\n                        \"CurrencyRateId\": 3466,\n                        \"Id\": 50926912,\n                        \"InstanceId\": 50940224,\n                        \"Number\": \"0003\",\n                        \"ProjectCurrency\": \"USD\",\n                        \"CurrencyCode\": \"USD\",\n                        \"Name\": \"Postman\",\n                        \"PartitionItemState\": \"Live\",\n                        \"PartitionItemType\": \"Project\",\n                        \"Description\": \"hi :)\",\n                        \"Path\": \"\\\\Postman\",\n                        \"AppNameLabel\": \"Workflow Labels\",\n                        \"DetailLabel\": \"Project: Postman\",\n                        \"LongLabel\": \"Postman\",\n                        \"ShortLabel\": \"Postman\",\n                        \"CreatedBy\": {\n                            \"id\": 49711149,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        },\n                        \"Address\": {\n                            \"id\": 50926913,\n                            \"entityDef\": \"kahua_Address.Address\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"DomainPartition\": {\n                        \"id\": 50926912,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    }\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            },
            {
              "name": "2.1.2: Updating Entities",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Set\": \"MySet\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": {{kpc-seed-2.1.2-id}},\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n                    \"Notes\": \"Updated Notes... {{$randomLoremSentence}}\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    }
                  ]
                },
                "description": "This activity updates a set of existing entities. Specifically, this updates a Daily Report created by 0.2: Seed Kahua Environment.\n\nTo update an entity, its `id` and `entityDef` must be passed in the set, along with the attributes to update and their new values. The `Existing` field must be present in the `Iterate` directive in the `Flow` of the activity, but it may be an empty object if no directives are needed."
              },
              "response": [
                {
                  "name": "Update Daily Report",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Set\": \"MySet\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 50944246,\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n                    \"Notes\": \"Updated Notes... Updated Notes... Quia ipsam ex et ullam eum ea aut et.\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4945"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "63"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:40:11 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"Activity\",\n        \"Set\": \"MySet\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"MySet\",\n                \"Existing\": {}\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"MySet\",\n            \"entities\": [\n                {\n                    \"id\": 50944246,\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n                    \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"AddWeatherOnSave\": false,\n                    \"CopyDailyReportMaterials\": false,\n                    \"IsLostDay\": false,\n                    \"MarkupEnabled\": false,\n                    \"Date\": \"2025-07-25T00:00:00\",\n                    \"CreatedDateTime\": \"2025-07-25T13:01:23.783\",\n                    \"TotalInternalLabor\": 0,\n                    \"TotalLaborUnits\": 0,\n                    \"CompanyCount\": 0,\n                    \"LostDayDateDueOffset\": 0,\n                    \"Instance\": 2,\n                    \"PartitionId\": 50926912,\n                    \"DomainPartitionId\": 50926912,\n                    \"Id\": 50944246,\n                    \"InstanceId\": 50944264,\n                    \"Number\": \"0019\",\n                    \"Notes\": \"Updated Notes... Quia ipsam ex et ullam eum ea aut et.\",\n                    \"LongLabel\": \"Daily Report: 7/25/2025\",\n                    \"DetailLabel\": \"Daily Report: 7/25/2025\",\n                    \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n                    \"ShortLabel\": \"Daily Report: 7/25/2025\",\n                    \"AppNameLabel\": \"Daily Reports\",\n                    \"AutomationLabel\": \"0019 Brandon Buckley\",\n                    \"ModifiedDateTime\": \"2025-07-25T13:40:11.289\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                        \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 3,\n                        \"PortableViewInstance\": 3,\n                        \"PartitionId\": 49709712,\n                        \"Id\": 49711149,\n                        \"InstanceId\": 49711160,\n                        \"EmailAddress\": \"bbuckley@kahua.com\",\n                        \"FirstName\": \"Brandon\",\n                        \"LastName\": \"Buckley\",\n                        \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"Brandon Buckley\",\n                        \"ShortLabel\": \"Brandon Buckley\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                        \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                        \"DetailLabel\": \"Name: Brandon Buckley\",\n                        \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49711149-49711154\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"Partition\": {\n                        \"id\": 50926912,\n                        \"entityDef\": \"kahua_Project.Project\",\n                        \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsArchived\": false,\n                        \"IsCountedDisabled\": false,\n                        \"IsManual\": false,\n                        \"IsMarkup\": false,\n                        \"IsPending\": false,\n                        \"IsTaxable\": false,\n                        \"MarkupEnabled\": false,\n                        \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n                        \"CurrencyRateToDomain\": 1,\n                        \"CurrencyRateToDocument\": 1,\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 2,\n                        \"CurrencyRateTypeId\": 2124,\n                        \"CurrencyRateId\": 3466,\n                        \"Id\": 50926912,\n                        \"InstanceId\": 50940224,\n                        \"Number\": \"0003\",\n                        \"ProjectCurrency\": \"USD\",\n                        \"CurrencyCode\": \"USD\",\n                        \"Name\": \"Postman\",\n                        \"PartitionItemState\": \"Live\",\n                        \"PartitionItemType\": \"Project\",\n                        \"Description\": \"hi :)\",\n                        \"Path\": \"\\\\Postman\",\n                        \"AppNameLabel\": \"Workflow Labels\",\n                        \"DetailLabel\": \"Project: Postman\",\n                        \"LongLabel\": \"Postman\",\n                        \"ShortLabel\": \"Postman\",\n                        \"CreatedBy\": {\n                            \"id\": 49711149,\n                            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": [],\n                            \"IsExchangeEntity\": false,\n                            \"IsEmployee\": false,\n                            \"MarkupEnabled\": false,\n                            \"IsDomainUser\": true,\n                            \"IsInSyncWithCommunity\": true,\n                            \"IsPublished\": true,\n                            \"IsDomainAdmin\": true,\n                            \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                            \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                            \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                            \"DomainPartitionId\": 0,\n                            \"Instance\": 3,\n                            \"PortableViewInstance\": 3,\n                            \"PartitionId\": 49709712,\n                            \"Id\": 49711149,\n                            \"InstanceId\": 49711160,\n                            \"EmailAddress\": \"bbuckley@kahua.com\",\n                            \"FirstName\": \"Brandon\",\n                            \"LastName\": \"Buckley\",\n                            \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                            \"SourceApp\": \"kahua_PeopleManager\",\n                            \"AppNameLabel\": \"[AppLabel]\",\n                            \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                            \"ContactFullNameLabel\": \"Brandon Buckley\",\n                            \"ShortLabel\": \"Brandon Buckley\",\n                            \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                            \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                            \"DetailLabel\": \"Name: Brandon Buckley\",\n                            \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                            \"ProfilePhoto\": {\n                                \"identifier\": \"49711149-49711154\",\n                                \"name\": \"default_profile_photo.png\"\n                            },\n                            \"Company\": {\n                                \"id\": 49709785,\n                                \"referenceType\": 1,\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            },\n                            \"Office\": {\n                                \"id\": 49709783,\n                                \"referenceType\": 1,\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            }\n                        },\n                        \"Address\": {\n                            \"id\": 50926913,\n                            \"entityDef\": \"kahua_Address.Address\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"DomainPartition\": {\n                        \"id\": 50926912,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"Author\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    }\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            },
            {
              "name": "2.1.3: Deleting Entities",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Set\": \"MySet\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {\r\n                    \"Directives\": [\r\n                        {\r\n                            \"PropertyName\": \"Delete\"\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": {{kpc-seed-2.1.3-id}},\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    }
                  ]
                },
                "description": "This activity deletes a set of existing entities.\n\nTo delete an entity, pass its `id` and `entitiyDef` in the set, then use a `Delete` directive in the `Directives` array inside of the `Existing` object of the `Iterate` directive of the activity's `Flow`. No arguments are needed on the `Delete` directive."
              },
              "response": [
                {
                  "name": "Delete Daily Report",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Set\": \"MySet\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {\r\n                    \"Directives\": [\r\n                        {\r\n                            \"PropertyName\": \"Delete\"\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 50944247,\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4958"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "94"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:40:48 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"Activity\",\n        \"Set\": \"MySet\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"MySet\",\n                \"Existing\": {\n                    \"Directives\": [\n                        {\n                            \"PropertyName\": \"Delete\"\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"MySet\",\n            \"entities\": [\n                {\n                    \"id\": 50944247,\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n                    \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"AddWeatherOnSave\": false,\n                    \"CopyDailyReportMaterials\": false,\n                    \"IsLostDay\": false,\n                    \"MarkupEnabled\": false,\n                    \"Date\": \"2025-07-25T00:00:00\",\n                    \"CreatedDateTime\": \"2025-07-25T13:01:23.890\",\n                    \"TotalInternalLabor\": 0,\n                    \"TotalLaborUnits\": 0,\n                    \"CompanyCount\": 0,\n                    \"LostDayDateDueOffset\": 0,\n                    \"Instance\": 1,\n                    \"PartitionId\": 50926912,\n                    \"DomainPartitionId\": 50926912,\n                    \"Id\": 50944247,\n                    \"InstanceId\": 50944247,\n                    \"Number\": \"0020\",\n                    \"Notes\": \"2.1.3 DR: Aut eveniet ut reprehenderit voluptas eligendi sunt provident.\",\n                    \"LongLabel\": \"Daily Report: 7/25/2025\",\n                    \"DetailLabel\": \"Daily Report: 7/25/2025\",\n                    \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n                    \"ShortLabel\": \"Daily Report: 7/25/2025\",\n                    \"AppNameLabel\": \"Daily Reports\",\n                    \"AutomationLabel\": \"0020 Brandon Buckley\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                        \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 3,\n                        \"PortableViewInstance\": 3,\n                        \"PartitionId\": 49709712,\n                        \"Id\": 49711149,\n                        \"InstanceId\": 49711160,\n                        \"EmailAddress\": \"bbuckley@kahua.com\",\n                        \"FirstName\": \"Brandon\",\n                        \"LastName\": \"Buckley\",\n                        \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"Brandon Buckley\",\n                        \"ShortLabel\": \"Brandon Buckley\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                        \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                        \"DetailLabel\": \"Name: Brandon Buckley\",\n                        \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49711149-49711154\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"Partition\": {\n                        \"id\": 50926912,\n                        \"entityDef\": \"kahua_Project.Project\",\n                        \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsArchived\": false,\n                        \"IsCountedDisabled\": false,\n                        \"IsManual\": false,\n                        \"IsMarkup\": false,\n                        \"IsPending\": false,\n                        \"IsTaxable\": false,\n                        \"MarkupEnabled\": false,\n                        \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n                        \"CurrencyRateToDomain\": 1,\n                        \"CurrencyRateToDocument\": 1,\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 2,\n                        \"CurrencyRateTypeId\": 2124,\n                        \"CurrencyRateId\": 3466,\n                        \"Id\": 50926912,\n                        \"InstanceId\": 50940224,\n                        \"Number\": \"0003\",\n                        \"ProjectCurrency\": \"USD\",\n                        \"CurrencyCode\": \"USD\",\n                        \"Name\": \"Postman\",\n                        \"PartitionItemState\": \"Live\",\n                        \"PartitionItemType\": \"Project\",\n                        \"Description\": \"hi :)\",\n                        \"Path\": \"\\\\Postman\",\n                        \"AppNameLabel\": \"Workflow Labels\",\n                        \"DetailLabel\": \"Project: Postman\",\n                        \"LongLabel\": \"Postman\",\n                        \"ShortLabel\": \"Postman\",\n                        \"CreatedBy\": {\n                            \"id\": 49711149,\n                            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": [],\n                            \"IsExchangeEntity\": false,\n                            \"IsEmployee\": false,\n                            \"MarkupEnabled\": false,\n                            \"IsDomainUser\": true,\n                            \"IsInSyncWithCommunity\": true,\n                            \"IsPublished\": true,\n                            \"IsDomainAdmin\": true,\n                            \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                            \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                            \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                            \"DomainPartitionId\": 0,\n                            \"Instance\": 3,\n                            \"PortableViewInstance\": 3,\n                            \"PartitionId\": 49709712,\n                            \"Id\": 49711149,\n                            \"InstanceId\": 49711160,\n                            \"EmailAddress\": \"bbuckley@kahua.com\",\n                            \"FirstName\": \"Brandon\",\n                            \"LastName\": \"Buckley\",\n                            \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                            \"SourceApp\": \"kahua_PeopleManager\",\n                            \"AppNameLabel\": \"[AppLabel]\",\n                            \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                            \"ContactFullNameLabel\": \"Brandon Buckley\",\n                            \"ShortLabel\": \"Brandon Buckley\",\n                            \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                            \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                            \"DetailLabel\": \"Name: Brandon Buckley\",\n                            \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                            \"ProfilePhoto\": {\n                                \"identifier\": \"49711149-49711154\",\n                                \"name\": \"default_profile_photo.png\"\n                            },\n                            \"Company\": {\n                                \"id\": 49709785,\n                                \"referenceType\": 1,\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            },\n                            \"Office\": {\n                                \"id\": 49709783,\n                                \"referenceType\": 1,\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            }\n                        },\n                        \"Address\": {\n                            \"id\": 50926913,\n                            \"entityDef\": \"kahua_Address.Address\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"DomainPartition\": {\n                        \"id\": 50926912,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"Author\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    }\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            },
            {
              "name": "2.1.4: Clear Attributes",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {\r\n                    \"Directives\": [\r\n                        {\r\n                            \"PropertyName\": \"Map\",\r\n                            \"Assignments\": [\r\n                                {\r\n                                    \"PropertyName\": \"Empty\",\r\n                                    \"To\": \"Notes\"\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": {{kpc-seed-2.1.2-id}},\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    }
                  ]
                },
                "description": "This activity clears an attribute from an entity. It does this by using a `Map` directive with an `Empty` assignment. Specifically, this will clear the `Notes` field of the Daily Report used in 2.1.2."
              },
              "response": [
                {
                  "name": "Clear Notes on DailyReport",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {\r\n                    \"Directives\": [\r\n                        {\r\n                            \"PropertyName\": \"Map\",\r\n                            \"Assignments\": [\r\n                                {\r\n                                    \"PropertyName\": \"Empty\",\r\n                                    \"To\": \"Notes\"\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 50944246,\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50944247"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4957"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "63"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:41:09 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"Activity\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"MySet\",\n                \"Existing\": {\n                    \"Directives\": [\n                        {\n                            \"PropertyName\": \"Map\",\n                            \"Assignments\": [\n                                {\n                                    \"PropertyName\": \"Empty\",\n                                    \"To\": \"Notes\"\n                                }\n                            ]\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"MySet\",\n            \"entities\": [\n                {\n                    \"id\": 50944246,\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n                    \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"AddWeatherOnSave\": false,\n                    \"CopyDailyReportMaterials\": false,\n                    \"IsLostDay\": false,\n                    \"MarkupEnabled\": false,\n                    \"Date\": \"2025-07-25T00:00:00\",\n                    \"CreatedDateTime\": \"2025-07-25T13:01:23.783\",\n                    \"ModifiedDateTime\": \"2025-07-25T13:41:09.513\",\n                    \"TotalInternalLabor\": 0,\n                    \"TotalLaborUnits\": 0,\n                    \"CompanyCount\": 0,\n                    \"LostDayDateDueOffset\": 0,\n                    \"Instance\": 3,\n                    \"PartitionId\": 50926912,\n                    \"DomainPartitionId\": 50926912,\n                    \"Id\": 50944246,\n                    \"InstanceId\": 50944266,\n                    \"Number\": \"0019\",\n                    \"LongLabel\": \"Daily Report: 7/25/2025\",\n                    \"DetailLabel\": \"Daily Report: 7/25/2025\",\n                    \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n                    \"ShortLabel\": \"Daily Report: 7/25/2025\",\n                    \"AppNameLabel\": \"Daily Reports\",\n                    \"AutomationLabel\": \"0019 Brandon Buckley\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                        \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 3,\n                        \"PortableViewInstance\": 3,\n                        \"PartitionId\": 49709712,\n                        \"Id\": 49711149,\n                        \"InstanceId\": 49711160,\n                        \"EmailAddress\": \"bbuckley@kahua.com\",\n                        \"FirstName\": \"Brandon\",\n                        \"LastName\": \"Buckley\",\n                        \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"Brandon Buckley\",\n                        \"ShortLabel\": \"Brandon Buckley\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                        \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                        \"DetailLabel\": \"Name: Brandon Buckley\",\n                        \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49711149-49711154\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"Partition\": {\n                        \"id\": 50926912,\n                        \"entityDef\": \"kahua_Project.Project\",\n                        \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsArchived\": false,\n                        \"IsCountedDisabled\": false,\n                        \"IsManual\": false,\n                        \"IsMarkup\": false,\n                        \"IsPending\": false,\n                        \"IsTaxable\": false,\n                        \"MarkupEnabled\": false,\n                        \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n                        \"CurrencyRateToDomain\": 1,\n                        \"CurrencyRateToDocument\": 1,\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 2,\n                        \"CurrencyRateTypeId\": 2124,\n                        \"CurrencyRateId\": 3466,\n                        \"Id\": 50926912,\n                        \"InstanceId\": 50940224,\n                        \"Number\": \"0003\",\n                        \"ProjectCurrency\": \"USD\",\n                        \"CurrencyCode\": \"USD\",\n                        \"Name\": \"Postman\",\n                        \"PartitionItemState\": \"Live\",\n                        \"PartitionItemType\": \"Project\",\n                        \"Description\": \"hi :)\",\n                        \"Path\": \"\\\\Postman\",\n                        \"AppNameLabel\": \"Workflow Labels\",\n                        \"DetailLabel\": \"Project: Postman\",\n                        \"LongLabel\": \"Postman\",\n                        \"ShortLabel\": \"Postman\",\n                        \"CreatedBy\": {\n                            \"id\": 49711149,\n                            \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": [],\n                            \"IsExchangeEntity\": false,\n                            \"IsEmployee\": false,\n                            \"MarkupEnabled\": false,\n                            \"IsDomainUser\": true,\n                            \"IsInSyncWithCommunity\": true,\n                            \"IsPublished\": true,\n                            \"IsDomainAdmin\": true,\n                            \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                            \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                            \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                            \"DomainPartitionId\": 0,\n                            \"Instance\": 3,\n                            \"PortableViewInstance\": 3,\n                            \"PartitionId\": 49709712,\n                            \"Id\": 49711149,\n                            \"InstanceId\": 49711160,\n                            \"EmailAddress\": \"bbuckley@kahua.com\",\n                            \"FirstName\": \"Brandon\",\n                            \"LastName\": \"Buckley\",\n                            \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                            \"SourceApp\": \"kahua_PeopleManager\",\n                            \"AppNameLabel\": \"[AppLabel]\",\n                            \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                            \"ContactFullNameLabel\": \"Brandon Buckley\",\n                            \"ShortLabel\": \"Brandon Buckley\",\n                            \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                            \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                            \"DetailLabel\": \"Name: Brandon Buckley\",\n                            \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                            \"ProfilePhoto\": {\n                                \"identifier\": \"49711149-49711154\",\n                                \"name\": \"default_profile_photo.png\"\n                            },\n                            \"Company\": {\n                                \"id\": 49709785,\n                                \"referenceType\": 1,\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            },\n                            \"Office\": {\n                                \"id\": 49709783,\n                                \"referenceType\": 1,\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            }\n                        },\n                        \"Address\": {\n                            \"id\": 50926913,\n                            \"entityDef\": \"kahua_Address.Address\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"DomainPartition\": {\n                        \"id\": 50926912,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"Author\": {\n                        \"id\": 49711149,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    }\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            }
          ],
          "description": "This section details ad-hoc activities, which are activities that are defined in the request. The URL to run them is similar: `POST https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/apps/:appName/activities/run`  \n  \n\nThe body of the request is the same as 2.0.1, but with an `activity` field. This field is an object with the following fields:\n\n- `PropertyName`: Equal to `Activity`\n    \n- `Name` (optional): The name of the activity. Does not do anything, but may be useful for debugging\n    \n- `Flow`: An array of objects that have a `PropertyName` of either:\n    \n    - `Iterate`: Iterate of over a set of entities. Has the following fields:\n        \n        - `Set`: The name of the set to iterate over\n            \n        - `New`: An object with an optional `Directives` array. This directive stack is applied to any _new_ entities in the set. Can be omitted if the activity is only updating existing entities\n            \n        - `Existing`: An object with an optional `Directives` array. This directive stack is applied to any _existing_ entities in the set. Can be omitted if the activity is only creating new entities\n            \n    - `DataQuery`: Calls a HubDef query and puts the result in a set (to be used by `Iterate`). Has the following fields:\n        \n        - `Query`: An object with a `Name` field equal to the name of the query in the HubDef\n            \n        - `Set`: The set to save the results of the query to\n            \n\nThe `Directives` arrays used in `New` and `Existing` are the same directives that are used in Steps, On Events, Commands, etc."
        },
        {
          "name": "2.2: Nested/Child Entities",
          "item": [
            {
              "name": "2.2.1: Create/Update Child Entities",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": {{kpc-seed-2.2.1-id}},\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n                    \"Author\": {\r\n                        \"id\": {{kpc-seed-contact-id}},\r\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\"\r\n                    }\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    }
                  ]
                },
                "description": "This requests creates/updates an entity's child entities. Specifically, this adds an `Author` to a Daily Report created by 0.2: Seed Kahua Environment.\n\nThe schema for child entities is the exact same as the schema for the entities contained within the set.\n\nSimilar to 2.1.1, if the `id` of the child entity is set to zero, a new entity will be created. All combinations of new and existing `id`'s are valid; you are not limited to only creating and only updating in any given request. However, you will need to ensure that the `New` and `Existing` fields of the `Iterate` directive are present."
              },
              "response": [
                {
                  "name": "Add Author to Daily Report",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 50944248,\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n                    \"Author\": {\r\n                        \"id\": 49709788,\r\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\"\r\n                    }\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50944247"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "2652"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "78"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:42:26 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"Activity\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"MySet\",\n                \"Existing\": {}\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"MySet\",\n            \"entities\": [\n                {\n                    \"id\": 50944248,\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n                    \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"AddWeatherOnSave\": false,\n                    \"CopyDailyReportMaterials\": false,\n                    \"IsLostDay\": false,\n                    \"MarkupEnabled\": false,\n                    \"Date\": \"2025-07-25T00:00:00\",\n                    \"CreatedDateTime\": \"2025-07-25T13:01:24.000\",\n                    \"ModifiedDateTime\": \"2025-07-25T13:05:18.963\",\n                    \"TotalInternalLabor\": 0,\n                    \"TotalLaborUnits\": 0,\n                    \"DomainPartitionId\": 0,\n                    \"LostDayDateDueOffset\": 0,\n                    \"CompanyCount\": 0,\n                    \"Instance\": 2,\n                    \"PartitionId\": 49709712,\n                    \"Id\": 50944248,\n                    \"InstanceId\": 50944254,\n                    \"Number\": \"0021\",\n                    \"Notes\": \"2.2.1 DR: Dolorem est culpa officia dolores quaerat et qui.\",\n                    \"LongLabel\": \"Daily Report: 7/25/2025\",\n                    \"DetailLabel\": \"Daily Report: 7/25/2025\",\n                    \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n                    \"ShortLabel\": \"Daily Report: 7/25/2025\",\n                    \"AppNameLabel\": \"Daily Reports\",\n                    \"AutomationLabel\": \"0021 App Dev\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": []\n                    },\n                    \"Partition\": {\n                        \"id\": 50926912,\n                        \"entityDef\": \"kahua_Project.Project\",\n                        \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                        \"outwardReferences\": []\n                    },\n                    \"DomainPartition\": {\n                        \"id\": 50926912,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"Author\": {\n                        \"id\": 49709788,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"CreatedDateTime\": \"2025-05-19T17:53:13.710\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:13.977\",\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"PortableViewInstance\": 2,\n                        \"Instance\": 3,\n                        \"Id\": 49709788,\n                        \"InstanceId\": 49709797,\n                        \"EmailAddress\": \"kahuaappdev@gmail.com\",\n                        \"FirstName\": \"App\",\n                        \"LastName\": \"Dev\",\n                        \"PersonId\": \"77558b3f-78a4-4b9c-989d-1f49aa150c25\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"App Dev - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"App Dev\",\n                        \"ShortLabel\": \"App Dev\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - App Dev\",\n                        \"LongLabel\": \"App Dev (kahuaappdev@gmail.com)\",\n                        \"DetailLabel\": \"Name: App Dev\",\n                        \"FullTextIndexContent\": \"App Dev BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49709788-49709793\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    }\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            },
            {
              "name": "2.2.2: Remove Child Entities",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {\r\n                    \"Directives\": [\r\n                        {\r\n                            \"PropertyName\": \"Map\",\r\n                            \"Assignments\": [\r\n                                {\r\n                                    \"PropertyName\": \"Empty\",\r\n                                    \"To\": \"Author\"\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": {{kpc-seed-2.2.1-id}},\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    }
                  ]
                },
                "description": "This activity removes (but does not delete) a child entity. It does this by emptying the attribute that contains a reference to the child entity using a `Map` directive."
              },
              "response": [
                {
                  "name": "Remove Author from Daily Report",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {\r\n                    \"Directives\": [\r\n                        {\r\n                            \"PropertyName\": \"Map\",\r\n                            \"Assignments\": [\r\n                                {\r\n                                    \"PropertyName\": \"Empty\",\r\n                                    \"To\": \"Author\"\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 50944248,\r\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50944247"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "2511"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "47"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:42:58 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"Activity\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"MySet\",\n                \"Existing\": {\n                    \"Directives\": [\n                        {\n                            \"PropertyName\": \"Map\",\n                            \"Assignments\": [\n                                {\n                                    \"PropertyName\": \"Empty\",\n                                    \"To\": \"Author\"\n                                }\n                            ]\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"MySet\",\n            \"entities\": [\n                {\n                    \"id\": 50944248,\n                    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n                    \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"AddWeatherOnSave\": false,\n                    \"CopyDailyReportMaterials\": false,\n                    \"IsLostDay\": false,\n                    \"MarkupEnabled\": false,\n                    \"Date\": \"2025-07-25T00:00:00\",\n                    \"CreatedDateTime\": \"2025-07-25T13:01:24.000\",\n                    \"ModifiedDateTime\": \"2025-07-25T13:42:58.165\",\n                    \"TotalInternalLabor\": 0,\n                    \"TotalLaborUnits\": 0,\n                    \"DomainPartitionId\": 0,\n                    \"LostDayDateDueOffset\": 0,\n                    \"CompanyCount\": 0,\n                    \"Instance\": 3,\n                    \"PartitionId\": 49709712,\n                    \"Id\": 50944248,\n                    \"InstanceId\": 50944267,\n                    \"Number\": \"0021\",\n                    \"Notes\": \"2.2.1 DR: Dolorem est culpa officia dolores quaerat et qui.\",\n                    \"LongLabel\": \"Daily Report: 7/25/2025\",\n                    \"DetailLabel\": \"Daily Report: 7/25/2025\",\n                    \"RecycleBinLabel\": \"Daily Report: 7/25/2025\",\n                    \"ShortLabel\": \"Daily Report: 7/25/2025\",\n                    \"AppNameLabel\": \"Daily Reports\",\n                    \"AutomationLabel\": \"0021 App Dev\",\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": []\n                    },\n                    \"Partition\": {\n                        \"id\": 50926912,\n                        \"entityDef\": \"kahua_Project.Project\",\n                        \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsArchived\": false,\n                        \"IsCountedDisabled\": false,\n                        \"IsManual\": false,\n                        \"IsMarkup\": false,\n                        \"IsPending\": false,\n                        \"IsTaxable\": false,\n                        \"MarkupEnabled\": false,\n                        \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n                        \"CurrencyRateToDomain\": 1,\n                        \"CurrencyRateToDocument\": 1,\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 2,\n                        \"CurrencyRateTypeId\": 2124,\n                        \"CurrencyRateId\": 3466,\n                        \"Id\": 50926912,\n                        \"InstanceId\": 50940224,\n                        \"Number\": \"0003\",\n                        \"ProjectCurrency\": \"USD\",\n                        \"CurrencyCode\": \"USD\",\n                        \"Name\": \"Postman\",\n                        \"PartitionItemState\": \"Live\",\n                        \"PartitionItemType\": \"Project\",\n                        \"Description\": \"hi :)\",\n                        \"Path\": \"\\\\Postman\",\n                        \"AppNameLabel\": \"Workflow Labels\",\n                        \"DetailLabel\": \"Project: Postman\",\n                        \"LongLabel\": \"Postman\",\n                        \"ShortLabel\": \"Postman\",\n                        \"CreatedBy\": {\n                            \"id\": 49711149,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        },\n                        \"Address\": {\n                            \"id\": 50926913,\n                            \"entityDef\": \"kahua_Address.Address\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"DomainPartition\": {\n                        \"id\": 50926912,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    }\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            }
          ],
          "description": "Similar to 1.3.2, activities support nested/child entities. This section details how to modify child entities."
        },
        {
          "name": "2.99: Examples",
          "item": [
            {
              "name": "2.99.1: Create Employee Profile",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"Employee\",\r\n                \"New\": {},\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"name\": \"Employee\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 0,\r\n                    \"entityDef\": \"kahua_EmployeeProfile.EmployeeProfile\",\r\n                    \"EmployeeID\": \"{{$randomInt}}\",\r\n                    \"Company\": {\r\n                        \"id\": {{kpc-seed-company}},\r\n                        \"entityDef\": \"kahua_CompanyManager.kahua_Company\"\r\n                    },\r\n                    \"Employee\": {\r\n                        \"id\": {{kpc-seed-contact-id}},\r\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\"\r\n                    }\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "0"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_EmployeeProfile"
                    }
                  ]
                },
                "description": "This activity creates an Employee Profile (saved in the \"Contacts\" app under \"Employee Profile\")"
              },
              "response": [
                {
                  "name": "2.99.1: Create Employee Profile",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"Employee\",\r\n                \"New\": {},\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"name\": \"Employee\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 0,\r\n                    \"entityDef\": \"kahua_EmployeeProfile.EmployeeProfile\",\r\n                    \"EmployeeID\": \"362\",\r\n                    \"Company\": {\r\n                        \"id\": 49709785,\r\n                        \"entityDef\": \"kahua_CompanyManager.kahua_Company\"\r\n                    },\r\n                    \"Employee\": {\r\n                        \"id\": 49709788,\r\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\"\r\n                    }\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "0"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_EmployeeProfile"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "3435"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "94"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 13:43:24 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"Employee\",\n                \"New\": {},\n                \"Existing\": {}\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"Employee\",\n            \"entities\": [\n                {\n                    \"id\": 50944268,\n                    \"entityDef\": \"kahua_EmployeeProfile.EmployeeProfile\",\n                    \"hubPath\": \"kahua_EmployeeProfile.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"EmployeeID\": \"362\",\n                    \"Status\": \"[StatusLookUp_Active_Label]\",\n                    \"DomainPartitionId\": 0,\n                    \"RecycleBinLabel\": \"App Dev\",\n                    \"DetailLabel\": \"Name: App Dev, ID: 362\",\n                    \"PartitionId\": 0,\n                    \"InstanceId\": 50944268,\n                    \"Instance\": 1,\n                    \"Id\": 50944268,\n                    \"LongLabel\": \"App Dev (kahuaappdev@gmail.com)\",\n                    \"ShortLabel\": \"App Dev\",\n                    \"AppNameLabel\": \"Employee Profile\",\n                    \"CreatedDateTime\": \"2025-07-25T13:43:24.255\",\n                    \"IsExchangeEntity\": false,\n                    \"MarkupEnabled\": false,\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": null,\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                        \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 3,\n                        \"PortableViewInstance\": 3,\n                        \"PartitionId\": 49709712,\n                        \"Id\": 49711149,\n                        \"InstanceId\": 49711160,\n                        \"EmailAddress\": \"bbuckley@kahua.com\",\n                        \"FirstName\": \"Brandon\",\n                        \"LastName\": \"Buckley\",\n                        \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"Brandon Buckley\",\n                        \"ShortLabel\": \"Brandon Buckley\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                        \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                        \"DetailLabel\": \"Name: Brandon Buckley\",\n                        \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49711149-49711154\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"Company\": {\n                        \"id\": 49709785,\n                        \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"Employee\": {\n                        \"id\": 49709788,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": null,\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"CreatedDateTime\": \"2025-05-19T17:53:13.710\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:13.977\",\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"PortableViewInstance\": 2,\n                        \"Instance\": 3,\n                        \"Id\": 49709788,\n                        \"InstanceId\": 49709797,\n                        \"EmailAddress\": \"kahuaappdev@gmail.com\",\n                        \"FirstName\": \"App\",\n                        \"LastName\": \"Dev\",\n                        \"PersonId\": \"77558b3f-78a4-4b9c-989d-1f49aa150c25\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"App Dev - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"App Dev\",\n                        \"ShortLabel\": \"App Dev\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - App Dev\",\n                        \"LongLabel\": \"App Dev (kahuaappdev@gmail.com)\",\n                        \"DetailLabel\": \"Name: App Dev\",\n                        \"FullTextIndexContent\": \"App Dev BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49709788-49709793\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    }\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            },
            {
              "name": "2.99.2: Create Capital Plan",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      "const current = new Date();\r",
                      "\r",
                      "pm.variables.set(\"start-date\", current.toISOString());\r",
                      "pm.variables.set(\"end-date\", new Date(current.getTime() + 6.9e10).toISOString());"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"CapitalPlan\",\r\n                \"New\": {},\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"name\": \"CapitalPlan\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 0,\r\n                    \"entityDef\": \"kahua_CapitalPlanning.CapitalPlan\",\r\n                    \"hubPath\": \"kahua_CapitalPlanning.Default\\\\Active\",\r\n                    \"Subject\": \"{{$randomLoremWords}}\",\r\n                    \"PlanStart\": \"{{start-date}}\",\r\n                    \"PlanEnd\": \"{{end-date}}\",\r\n                    \"FundItems\": [\r\n                        {\r\n                            \"id\": 0,\r\n                            \"entityDef\": \"kahua_CapitalPlanning.CapitalPlanFund\",\r\n                            \"Name\": \"{{$randomCompanyName}} {{$randomTransactionType}}\",\r\n                            \"Code\": \"{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n                            \"Amount\": \"{{$randomInt}}{{$randomInt}}\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_CapitalPlanning"
                    }
                  ]
                },
                "description": "> This request will not work unless the `kahua_CapitalPlanning` app is installed \n  \n\nThis activity creates a Capital Plan"
              },
              "response": [
                {
                  "name": "Create Capital Plan",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"CapitalPlan\",\r\n                \"New\": {},\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"name\": \"CapitalPlan\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 0,\r\n                    \"entityDef\": \"kahua_CapitalPlanning.CapitalPlan\",\r\n                    \"hubPath\": \"kahua_CapitalPlanning.Default\\\\Active\",\r\n                    \"Subject\": \"error harum distinctio\",\r\n                    \"PlanStart\": \"2025-07-25T14:01:31.810\",\r\n                    \"PlanEnd\": \"2027-10-02T04:41:31.810\",\r\n                    \"FundItems\": [\r\n                        {\r\n                            \"id\": 0,\r\n                            \"entityDef\": \"kahua_CapitalPlanning.CapitalPlanFund\",\r\n                            \"Name\": \"Marvin Inc withdrawal\",\r\n                            \"Code\": \"8h8m\",\r\n                            \"Amount\": \"641802\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_CapitalPlanning"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "7658"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "141"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:01:32 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"CapitalPlan\",\n                \"New\": {},\n                \"Existing\": {}\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"CapitalPlan\",\n            \"entities\": [\n                {\n                    \"id\": 50944285,\n                    \"entityDef\": \"kahua_CapitalPlanning.CapitalPlan\",\n                    \"hubPath\": \"kahua_CapitalPlanning.Default\\\\Active\",\n                    \"outwardReferences\": [],\n                    \"Number\": \"0001\",\n                    \"UniqueNumber\": \"0001\",\n                    \"EnableMultipleCurrencies\": true,\n                    \"ShortLabel\": \"0001 error harum distinctio\",\n                    \"WbsSegmentLevel\": 1,\n                    \"Sequence\": 1,\n                    \"Subject\": \"error harum distinctio\",\n                    \"ReleasedUponApproval\": false,\n                    \"IsPending\": false,\n                    \"IsArchived\": false,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"CreatedDateTime\": \"2025-07-25T14:01:32.009\",\n                    \"CreatedDate\": \"2025-07-25T00:00:00.000\",\n                    \"PlanEnd\": \"2027-10-02T04:41:31.810\",\n                    \"PlanStart\": \"2025-07-25T14:01:31.810\",\n                    \"InstanceId\": 50944285,\n                    \"Instance\": 1,\n                    \"Id\": 50944285,\n                    \"DefaultRateTypeId\": 0,\n                    \"Status\": \"Draft\",\n                    \"DefaultTimescaleNextYear\": \"Month\",\n                    \"DefaultTimescaleCurrentYear\": \"Month\",\n                    \"DefaultTimescaleBeyondNextYear\": \"Year\",\n                    \"DefaultTimescalePreviousYears\": \"Year\",\n                    \"DefaultForecastPeriodSet\": \"Internal\",\n                    \"UniqueName\": \"CapitalPlan-0001\",\n                    \"DomainPartitionPath\": \"\\\\Postman\",\n                    \"Path\": \"\\\\Postman\\\\\",\n                    \"PartitionPath\": \"\\\\Postman\",\n                    \"AppNameLabel\": \"Capital Planning\",\n                    \"IsExchangeEntity\": false,\n                    \"MarkupEnabled\": false,\n                    \"CreatedBy\": {\n                        \"id\": 49711149,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsEmployee\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsDomainUser\": true,\n                        \"IsInSyncWithCommunity\": true,\n                        \"IsPublished\": true,\n                        \"IsDomainAdmin\": true,\n                        \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                        \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                        \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 3,\n                        \"PortableViewInstance\": 3,\n                        \"PartitionId\": 49709712,\n                        \"Id\": 49711149,\n                        \"InstanceId\": 49711160,\n                        \"EmailAddress\": \"bbuckley@kahua.com\",\n                        \"FirstName\": \"Brandon\",\n                        \"LastName\": \"Buckley\",\n                        \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                        \"SourceApp\": \"kahua_PeopleManager\",\n                        \"AppNameLabel\": \"[AppLabel]\",\n                        \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                        \"ContactFullNameLabel\": \"Brandon Buckley\",\n                        \"ShortLabel\": \"Brandon Buckley\",\n                        \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                        \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                        \"DetailLabel\": \"Name: Brandon Buckley\",\n                        \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                        \"ProfilePhoto\": {\n                            \"identifier\": \"49711149-49711154\",\n                            \"name\": \"default_profile_photo.png\"\n                        },\n                        \"Company\": {\n                            \"id\": 49709785,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        \"Office\": {\n                            \"id\": 49709783,\n                            \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"DefaultForecastCurveType\": {\n                        \"id\": 50944274,\n                        \"entityDef\": \"kahua_ForecastCurve.ForecastCurve\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"MarkupEnabled\": false,\n                        \"IsStandard\": true,\n                        \"IsVisibleInConfig\": true,\n                        \"IsEnabled\": true,\n                        \"ModifiedDateTime\": \"2025-07-25T13:45:37.770\",\n                        \"CreatedDateTime\": \"2025-07-25T13:45:37.770\",\n                        \"Point10\": 0.1,\n                        \"Point2\": 0.1,\n                        \"Point3\": 0.1,\n                        \"Point4\": 0.1,\n                        \"Point5\": 0.1,\n                        \"Point6\": 0.1,\n                        \"Point7\": 0.1,\n                        \"Point8\": 0.1,\n                        \"Point9\": 0.1,\n                        \"Point1\": 0.1,\n                        \"PartitionId\": -1,\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 1,\n                        \"PortableViewInstance\": 1,\n                        \"Id\": 50944274,\n                        \"InstanceId\": 50944274,\n                        \"SourceApp\": \"kahua_ForecastCurve\",\n                        \"Name\": \"Straight-line\",\n                        \"ClientId\": \"ForecastCurve_Config_StraightLine\",\n                        \"AppNameLabel\": \"Forecast Curves\",\n                        \"CreatedBy\": {\n                            \"id\": 49711149,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"Partition\": {\n                        \"id\": 50926912,\n                        \"entityDef\": \"kahua_Project.Project\",\n                        \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                        \"outwardReferences\": [],\n                        \"IsExchangeEntity\": false,\n                        \"IsArchived\": false,\n                        \"IsCountedDisabled\": false,\n                        \"IsManual\": false,\n                        \"IsMarkup\": false,\n                        \"IsPending\": false,\n                        \"IsTaxable\": false,\n                        \"MarkupEnabled\": false,\n                        \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n                        \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n                        \"CurrencyRateToDomain\": 1,\n                        \"CurrencyRateToDocument\": 1,\n                        \"PartitionId\": 0,\n                        \"DomainPartitionId\": 0,\n                        \"Instance\": 2,\n                        \"CurrencyRateTypeId\": 2124,\n                        \"CurrencyRateId\": 3466,\n                        \"Id\": 50926912,\n                        \"InstanceId\": 50940224,\n                        \"Number\": \"0003\",\n                        \"ProjectCurrency\": \"USD\",\n                        \"CurrencyCode\": \"USD\",\n                        \"Name\": \"Postman\",\n                        \"PartitionItemState\": \"Live\",\n                        \"PartitionItemType\": \"Project\",\n                        \"Description\": \"hi :)\",\n                        \"Path\": \"\\\\Postman\",\n                        \"AppNameLabel\": \"Workflow Labels\",\n                        \"DetailLabel\": \"Project: Postman\",\n                        \"LongLabel\": \"Postman\",\n                        \"ShortLabel\": \"Postman\",\n                        \"CreatedBy\": {\n                            \"id\": 49711149,\n                            \"referenceType\": 1,\n                            \"hubPath\": null,\n                            \"outwardReferences\": []\n                        },\n                        \"Address\": {\n                            \"id\": 50926913,\n                            \"entityDef\": \"kahua_Address.Address\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        }\n                    },\n                    \"DomainPartition\": {\n                        \"id\": 50926912,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"FundItems\": [\n                        {\n                            \"id\": 50944286,\n                            \"entityDef\": \"kahua_CapitalPlanning.CapitalPlanFund\",\n                            \"hubPath\": null,\n                            \"outwardReferences\": [],\n                            \"Code\": \"8h8m\",\n                            \"Name\": \"Marvin Inc withdrawal\",\n                            \"Amount\": 641802,\n                            \"CreatedDateTime\": \"2025-07-25T14:01:32.009\",\n                            \"AppNameLabel\": \"Capital Planning\",\n                            \"IsExchangeEntity\": false,\n                            \"MarkupEnabled\": false,\n                            \"DomainPartitionId\": 50926912,\n                            \"PartitionId\": 50926912,\n                            \"InstanceId\": 50944286,\n                            \"Instance\": 1,\n                            \"Id\": 50944286,\n                            \"CreatedBy\": {\n                                \"id\": 49711149,\n                                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                                \"hubPath\": null,\n                                \"outwardReferences\": [],\n                                \"IsExchangeEntity\": false,\n                                \"IsEmployee\": false,\n                                \"MarkupEnabled\": false,\n                                \"IsDomainUser\": true,\n                                \"IsInSyncWithCommunity\": true,\n                                \"IsPublished\": true,\n                                \"IsDomainAdmin\": true,\n                                \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                                \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                                \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                                \"DomainPartitionId\": 0,\n                                \"Instance\": 3,\n                                \"PortableViewInstance\": 3,\n                                \"PartitionId\": 49709712,\n                                \"Id\": 49711149,\n                                \"InstanceId\": 49711160,\n                                \"EmailAddress\": \"bbuckley@kahua.com\",\n                                \"FirstName\": \"Brandon\",\n                                \"LastName\": \"Buckley\",\n                                \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                                \"SourceApp\": \"kahua_PeopleManager\",\n                                \"AppNameLabel\": \"[AppLabel]\",\n                                \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                                \"ContactFullNameLabel\": \"Brandon Buckley\",\n                                \"ShortLabel\": \"Brandon Buckley\",\n                                \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                                \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                                \"DetailLabel\": \"Name: Brandon Buckley\",\n                                \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                                \"ProfilePhoto\": {\n                                    \"identifier\": \"49711149-49711154\",\n                                    \"name\": \"default_profile_photo.png\"\n                                },\n                                \"Company\": {\n                                    \"id\": 49709785,\n                                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                                    \"hubPath\": null,\n                                    \"outwardReferences\": []\n                                },\n                                \"Office\": {\n                                    \"id\": 49709783,\n                                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                                    \"hubPath\": null,\n                                    \"outwardReferences\": []\n                                }\n                            },\n                            \"Partition\": {\n                                \"id\": 50926912,\n                                \"entityDef\": \"kahua_Project.Project\",\n                                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                                \"outwardReferences\": [],\n                                \"IsExchangeEntity\": false,\n                                \"IsArchived\": false,\n                                \"IsCountedDisabled\": false,\n                                \"IsManual\": false,\n                                \"IsMarkup\": false,\n                                \"IsPending\": false,\n                                \"IsTaxable\": false,\n                                \"MarkupEnabled\": false,\n                                \"CurrencyRateLastModifiedDateTime\": \"2025-07-17T21:30:42.990\",\n                                \"CreatedDateTime\": \"2025-07-17T21:30:42.990\",\n                                \"ModifiedDateTime\": \"2025-07-22T21:39:47.087\",\n                                \"CurrencyRateToDomain\": 1,\n                                \"CurrencyRateToDocument\": 1,\n                                \"PartitionId\": 0,\n                                \"DomainPartitionId\": 0,\n                                \"Instance\": 2,\n                                \"CurrencyRateTypeId\": 2124,\n                                \"CurrencyRateId\": 3466,\n                                \"Id\": 50926912,\n                                \"InstanceId\": 50940224,\n                                \"Number\": \"0003\",\n                                \"ProjectCurrency\": \"USD\",\n                                \"CurrencyCode\": \"USD\",\n                                \"Name\": \"Postman\",\n                                \"PartitionItemState\": \"Live\",\n                                \"PartitionItemType\": \"Project\",\n                                \"Description\": \"hi :)\",\n                                \"Path\": \"\\\\Postman\",\n                                \"AppNameLabel\": \"Workflow Labels\",\n                                \"DetailLabel\": \"Project: Postman\",\n                                \"LongLabel\": \"Postman\",\n                                \"ShortLabel\": \"Postman\",\n                                \"CreatedBy\": {\n                                    \"id\": 49711149,\n                                    \"referenceType\": 1,\n                                    \"hubPath\": null,\n                                    \"outwardReferences\": []\n                                },\n                                \"Address\": {\n                                    \"id\": 50926913,\n                                    \"entityDef\": \"kahua_Address.Address\",\n                                    \"hubPath\": null,\n                                    \"outwardReferences\": []\n                                }\n                            },\n                            \"DomainPartition\": {\n                                \"id\": 50926912,\n                                \"referenceType\": 1,\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            }\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            },
            {
              "name": "2.99.3: File Manager File as Doc Reference",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"AttachFileToRFI\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"RFI\",\r\n                \"New\": {},\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"listIdentifier\": 0,\r\n    \"listId\": 0,\r\n    \"sets\": [\r\n        {\r\n            \"name\": \"RFI\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 59966581,\r\n                    \"entityDef\": \"kahua_AEC_RFI.RFI\",\r\n                    \"outwardReferences\": [\r\n                        {\r\n                            \"documentEntityId\": {{kpc-seed-3.1.1-file}},\r\n                            \"documentEntityDef\": \"kahua_FileManager.File\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/0/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    "0",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "appName",
                      "value": "kahua_AEC_RFI"
                    }
                  ]
                },
                "description": "[Working With Reference Files | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/WorkingWithReferenceFiles)\n\nThis activity allows for adding File Manager files and media as references on a document. Both the document and the File Manager file must exist and have their entity IDs known prior to running this activity (instructions for these can be found in the linked Wiki article).\n\nThe path parameter `:appName` and `entityDef` values within the request body may be updated to reflect the desired document type (RFI, Contract, etc).\n\n> NOTE: If the referenced file is deleted from File Manager (via API, activity, or Kahua UI), it will still appear as a reference on the document, and display \"Kahua cannot find or user does not have access to the document\" when clicked. \n  \n\nAlternatively, you may also upload a file directly to a Kahua app and use a similar activity to link it to a document as a reference. Instructions for this method may be found in the \"How to add a file directly to a record as a reference\" section in the linked Wiki article."
              },
              "response": [
                {
                  "name": "2.99.3: File Manager File as Doc Reference",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"AttachFileToRFI\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"RFI\",\r\n                \"New\": {},\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"listIdentifier\": 0,\r\n    \"listId\": 0,\r\n    \"sets\": [\r\n        {\r\n            \"name\": \"RFI\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": 59966581,\r\n                    \"entityDef\": \"kahua_AEC_RFI.RFI\",\r\n                    \"outwardReferences\": [\r\n                        {\r\n                            \"documentEntityId\": {{kpc-seed-3.1.1-file}},\r\n                            \"documentEntityDef\": \"kahua_FileManager.File\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/0/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        "0",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "appName",
                          "value": "kahua_AEC_RFI"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 18:37:10 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "158"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"AttachFileToRFI\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"RFI\",\n                \"New\": {},\n                \"Existing\": {}\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"RFI\",\n            \"entities\": [\n                {\n                    \"id\": 59966581,\n                    \"entityDef\": \"kahua_AEC_RFI.RFI\",\n                    \"hubPath\": \"kahua_AEC_RFI.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": [],\n                    \"IsExchangeEntity\": false,\n                    \"WorkSuspended\": false,\n                    \"MarkupEnabled\": false,\n                    \"ReviewStartDate\": \"2026-01-29T00:00:00\",\n                    \"Date\": \"2026-01-29T00:00:00\",\n                    \"CreatedDateTime\": \"2026-01-29T18:26:15.133\",\n                    \"ModifiedDateTime\": \"2026-01-29T18:37:10.724\",\n                    \"DomainPartitionId\": 0,\n                    \"Instance\": 4,\n                    \"PartitionId\": 58620788,\n                    \"Id\": 59966581,\n                    \"InstanceId\": 59967330,\n                    \"Number\": \"0001\",\n                    \"Subject\": \"DocumentReferenced\",\n                    \"Status\": \"Open\",\n                    \"RecycleBinLabel\": \"0001: DocumentReferenced\",\n                    \"AppNameLabel\": \"RFIs\",\n                    \"DetailLabel\": \"RFI 0001: DocumentReferenced\",\n                    \"LongLabel\": \"RFI 0001\",\n                    \"ShortLabel\": \"RFI 0001\",\n                    \"PortableView\": {\n                        \"identifier\": \"59966581-59966589\",\n                        \"name\": \"RFI_RFIViewReport_0001.en.en.pdf\"\n                    },\n                    \"AutomationLabel\": \"0001 DocumentReferenced\",\n                    \"CreatedBy\": {\n                        \"id\": 58620737,\n                        \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": []\n                    },\n                    \"Partition\": {\n                        \"id\": 58620788,\n                        \"entityDef\": \"kahua_Core.kahua_AppList\",\n                        \"hubPath\": \"\",\n                        \"outwardReferences\": []\n                    },\n                    \"Author\": {\n                        \"id\": 58620737,\n                        \"referenceType\": 1,\n                        \"hubPath\": null,\n                        \"outwardReferences\": []\n                    },\n                    \"OutwardReferences\": [\n                        {\n                            \"id\": 59966583,\n                            \"entityDef\": \"kahua_Reference.kahua_ReferenceBase\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        {\n                            \"id\": 59967275,\n                            \"entityDef\": \"kahua_Reference.kahua_ReferenceBase\",\n                            \"hubPath\": \"\",\n                            \"outwardReferences\": []\n                        },\n                        {\n                            \"id\": 59967331,\n                            \"entityDef\": \"kahua_Reference.kahua_ReferenceBase\",\n                            \"hubPath\": null,\n                            \"outwardReferences\": [],\n                            \"SourceLastUpdated\": \"2026-01-29T18:37:10.714\",\n                            \"Identifier\": \"c76b8a0f-c4e6-482b-9a57-0e81eefb5aa8\",\n                            \"OriginalInstanceId\": 59967299,\n                            \"SourceFile\": {\n                                \"identifier\": \"59967331-59967334\",\n                                \"name\": \"3.1.1 File.txt\"\n                            },\n                            \"ReferenceType\": \"SupportingDocument\",\n                            \"Description\": \"3.1.1 File.txt\",\n                            \"DisplayValue\": \"3.1.1 File.txt\",\n                            \"IncludeOnSend\": true,\n                            \"IncludeMarkupOnSend\": false,\n                            \"IncludeInDefaultComposite\": false,\n                            \"IsComposite\": false,\n                            \"IsCurrent\": true,\n                            \"IsCurrentDisplay\": true,\n                            \"IsRemoved\": false,\n                            \"IsVoided\": false,\n                            \"CompositeRequiresRender\": false,\n                            \"IsTemplate\": false,\n                            \"IsDocumentSource\": false,\n                            \"DomainPartitionId\": 0,\n                            \"PartitionId\": 0,\n                            \"AppNameLabel\": \"[AppLabel]\",\n                            \"ShortLabel\": \"3.1.1 File.txt\",\n                            \"Id\": 59967331,\n                            \"CreatedDateTime\": \"2026-01-29T18:37:10.724\",\n                            \"Instance\": 1,\n                            \"InstanceId\": 59967331,\n                            \"SourceEntity\": {\n                                \"id\": 59967297,\n                                \"entityDef\": \"kahua_FileManager.File\",\n                                \"hubPath\": \"kahua_FileManager.FilesNoWorkflow\\\\Start\",\n                                \"outwardReferences\": [],\n                                \"IsExchangeEntity\": false,\n                                \"SyncWithFieldWire\": false,\n                                \"SyncWithPlanGrid\": false,\n                                \"SyncEnabled\": false,\n                                \"MarkupEnabled\": false,\n                                \"CreatedDateTime\": \"2026-01-29T18:37:00.030\",\n                                \"Instance\": 2,\n                                \"DomainPartitionId\": 59914896,\n                                \"PartitionId\": 59967287,\n                                \"Id\": 59967297,\n                                \"InstanceId\": 59967332,\n                                \"RecycleBinLabel\": \"3.1.1 File.txt\",\n                                \"ShortLabel\": \"3.1.1 File.txt\",\n                                \"AppNameLabel\": \"File Manager\",\n                                \"DetailLabel\": \"File: 3.1.1 File.txt\",\n                                \"LongLabel\": \"File 3.1.1 File.txt\",\n                                \"Attachment\": {\n                                    \"identifier\": \"59967297-59967299\",\n                                    \"name\": \"3.1.1 File.txt\"\n                                },\n                                \"ModifiedDateTime\": \"2026-01-29T18:37:10.724\",\n                                \"CreatedBy\": {\n                                    \"id\": 58620737,\n                                    \"referenceType\": 1,\n                                    \"hubPath\": null,\n                                    \"outwardReferences\": []\n                                },\n                                \"Partition\": {\n                                    \"id\": 59967287,\n                                    \"entityDef\": \"kahua_FileManager.Folder\",\n                                    \"hubPath\": \"\",\n                                    \"outwardReferences\": []\n                                },\n                                \"DomainPartition\": {\n                                    \"id\": 59914896,\n                                    \"entityDef\": \"kahua_Project.Project\",\n                                    \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                                    \"outwardReferences\": []\n                                },\n                                \"InwardReferences\": [\n                                    {\n                                        \"id\": 59967331,\n                                        \"referenceType\": 1,\n                                        \"hubPath\": null,\n                                        \"outwardReferences\": []\n                                    }\n                                ]\n                            },\n                            \"ReferenceEntity\": {\n                                \"id\": 59967297,\n                                \"entityDef\": \"kahua_FileManager.File\",\n                                \"hubPath\": null,\n                                \"outwardReferences\": []\n                            }\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            }
          ],
          "description": "This section contains examples of activities that can be used in Kahua."
        }
      ],
      "description": "The base mechanism for modifying data within Kahua is an _activity_. Activities are used to ensure data modifications go through standard Kahua logic and provide directive stacks where business logic can be inserted to ensure that data coming in through the API is validated and accurate for the app you are working with.\n\nExcluding 2.0.1, all of the activities in this section are _ad-hoc_ activities since they are not predefined in the HubDef. Ad-hoc activities can be automatically generated inside of kBuilder. Right click on the activity to convert and select \"Generate Ad-Hoc\" to copy the JSON to the clipboard."
    },
    {
      "name": "3: File Management",
      "item": [
        {
          "name": "3.1: Files",
          "item": [
            {
              "name": "3.1.1: Get File Info",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/:fileId/info",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "files",
                    ":fileId",
                    "info"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "fileId",
                      "value": "{{kpc-seed-3.1.1-file}}"
                    }
                  ]
                },
                "description": "[File - Get Info | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/GetFileInfo)\n\nReturns basic information on a single file with id `:fileId` in project `:projectId`. The body of the response has the following fields:\n\n- `entityId`: The ID of the file\n    \n- `partitionEntityId`: The ID of the folder the file resides in\n    \n- `name`: The name of the file\n    \n- `checksum`: A hash of the file\n    \n- `size`: The size of the file in bytes\n    \n- `syncIncluded`: Unused, always `false`"
              },
              "response": [
                {
                  "name": "Success",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/:fileId/info",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "files",
                        ":fileId",
                        "info"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "fileId",
                          "value": "{{kpc-seed-3.1.1-file}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:16:35 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "20"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59915247,\n    \"partitionEntityId\": 59915237,\n    \"name\": \"3.1.1 File.txt\",\n    \"checksum\": \"a7d55679df3e08c1e8a4c58e7ffec1da\",\n    \"size\": 567,\n    \"syncIncluded\": false\n}"
                },
                {
                  "name": "Deleted File",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/:fileId/info",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "files",
                        ":fileId",
                        "info"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "fileId",
                          "value": "{{kpc-seed-3.1.7-file}}"
                        }
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:29:45 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "37"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"errorCode\": \"File_Deleted\",\n    \"message\": \"The file has been deleted\"\n}"
                }
              ]
            },
            {
              "name": "3.1.2: Download File",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/files/:fileId/download",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "files",
                    ":fileId",
                    "download"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-root}}"
                    },
                    {
                      "key": "fileId",
                      "value": "{{kpc-seed-3.1.1-file}}"
                    }
                  ]
                },
                "description": "Downloads the file with id `:fileId` from folder `:folderId` in project `:projectId`. The response contains the `Content-Disposition` header, which has the value `attachment; fileName=\"{file name here}\"`. This header is intended for web browsers, but it is possible to use it to avoid a call to 3.1.1 if the name of the file is not already known. If you do not need this information, use 3.1.3 instead."
              },
              "response": [
                {
                  "name": "3.1.2: Download File",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/files/:fileId/download",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "files",
                        ":fileId",
                        "download"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-root}}"
                        },
                        {
                          "key": "fileId",
                          "value": "{{kpc-seed-3.1.1-file}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/octet-stream"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:18:15 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "126"
                    },
                    {
                      "key": "Content-Disposition",
                      "value": "attachment; filename=\"3.1.1 File.txt\""
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "Distinctio recusandae delectus. Praesentium aut est. Neque fugiat delectus sint.\n \rVoluptas distinctio inventore at tempore fugit consequatur minima. Quaerat et necessitatibus. Et cumque ad quae odit et. Fugiat enim quae unde. Quia accusamus exercitationem. Nisi dolorem deserunt expedita exercitationem voluptas veritatis.\n \rEarum eos quis quia. Ipsa animi animi non neque amet provident repellendus reprehenderit officiis. Odit qui molestias culpa quis dolor adipisci delectus. Perferendis quia sunt magni porro illum sequi facilis consequatur cum. Aut ad beatae a."
                }
              ]
            },
            {
              "name": "3.1.3: Get File Stream",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/files/:fileId/stream",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "files",
                    ":fileId",
                    "stream"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-root}}"
                    },
                    {
                      "key": "fileId",
                      "value": "{{kpc-seed-3.1.1-file}}"
                    }
                  ]
                },
                "description": "[File - Get Stream | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/GetFileStream)  \n\nIdentical to 3.1.2, but does not include a `Content-Disposition` header in the response."
              },
              "response": [
                {
                  "name": "3.1.3: Get File Stream",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/files/:fileId/stream",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "files",
                        ":fileId",
                        "stream"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-root}}"
                        },
                        {
                          "key": "fileId",
                          "value": "{{kpc-seed-3.1.1-file}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/octet-stream"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:20:45 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "71"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "Distinctio recusandae delectus. Praesentium aut est. Neque fugiat delectus sint.\n \rVoluptas distinctio inventore at tempore fugit consequatur minima. Quaerat et necessitatibus. Et cumque ad quae odit et. Fugiat enim quae unde. Quia accusamus exercitationem. Nisi dolorem deserunt expedita exercitationem voluptas veritatis.\n \rEarum eos quis quia. Ipsa animi animi non neque amet provident repellendus reprehenderit officiis. Odit qui molestias culpa quis dolor adipisci delectus. Perferendis quia sunt magni porro illum sequi facilis consequatur cum. Aut ad beatae a."
                }
              ]
            },
            {
              "name": "3.1.4: Rename File",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/:fileId/rename/:fileName",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "files",
                    ":fileId",
                    "rename",
                    ":fileName"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "fileId",
                      "value": "{{kpc-seed-3.1.4-file}}"
                    },
                    {
                      "key": "fileName",
                      "value": "RENAMED_{{$randomInt}} 3.1.4 File.txt"
                    }
                  ]
                },
                "description": "[File - Rename | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/renameafile)\n\nRenames the file with id`:fileId` to `:fileName` in project `:projectId`. The body of the response has the following fields:\n\n- `errors`: An array of error messages.\n    \n- `confirmations`: An array of confirmation messages.\n    \n- `completedWithoutErrors`: A boolean that indicates if the request was processed without any errors."
              },
              "response": [
                {
                  "name": "3.1.4: Rename File",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/:fileId/rename/:fileName",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "files",
                        ":fileId",
                        "rename",
                        ":fileName"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "fileId",
                          "value": "{{kpc-seed-3.1.4-file}}"
                        },
                        {
                          "key": "fileName",
                          "value": "RENAMED_{{$randomInt}} 3.1.4 File.txt"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:22:06 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "public, no-transform, max-age=31536000"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "436"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"errors\": [],\n    \"confirmations\": [],\n    \"completedWithoutErrors\": true\n}"
                }
              ]
            },
            {
              "name": "3.1.5: Move File(s)",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"FileIds\": \"{{kpc-seed-3.1.5-file}}\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/move/to/:folderId",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "files",
                    "move",
                    "to",
                    ":folderId"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-3.1.5-dest}}"
                    }
                  ]
                },
                "description": "[Files - Move | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/MoveFiles)\n\nMoves the specified file `:fileId` to the folder `:folderId` in project `:projectId`.\n\nThe request body has two fields:\n\n- `FileIds`: A comma separated list of file ID's to move to `:folderId`\n    \n- `FileMode` (optional): Specifies how to handle potential conflicts. One of the following values:\n    \n    - `Default` (default): Fails if there is a file name conflict\n        \n    - `SkipExisting`: Skips the file being moved if an existing file with the same name already exists in the target folder\n        \n    - `VersionExisting`: If a file with the same name exists in the target folder, the new file will replace it as a new version of the file. The existing file will show up as a previous version.\n        \n    - `Replace`: If a file with the same name exists in the target folder, the new file will replace it without keeping a version of the existing file.\n        \n    - `NewCopy`: If a file with the same name exists in the target folder, the new file will be added with a new unique filename to avoid a filename conflict.\n        \n\nThe body of the response has the following fields:\n\n- `errors`: An array of error messages.\n    \n- `confirmations`: An array of confirmation messages.\n    \n- `completedWithoutErrors`: A boolean that indicates if the request was processed without any errors."
              },
              "response": [
                {
                  "name": "3.1.5: Move File(s)",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"FileIds\": \"{{kpc-seed-3.1.5-file}}\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/move/to/:folderId",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "files",
                        "move",
                        "to",
                        ":folderId"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-3.1.5-dest}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:25:04 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "493"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"errors\": [],\n    \"confirmations\": [],\n    \"completedWithoutErrors\": true\n}"
                }
              ]
            },
            {
              "name": "3.1.6: Copy File(s)",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n  \"FileIds\" : \"{{kpc-seed-3.1.6-file}}\",\r\n  \"FileMode\" : \"Replace\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/copy/to/:folderId",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "files",
                    "copy",
                    "to",
                    ":folderId"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-3.1.6-dest}}"
                    }
                  ]
                },
                "description": "[Files - Copy | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/CopyFiles)\n\nCopies one or more files specified in the request body to the folder `:folderId` in project `:projectId`\n\nThe request body has two fields:\n\n- `FileIds`: A comma separated list of file ID's to move to `:folderId`\n    \n- `FileMode` (optional): Specifies how to handle potential conflicts. One of the following values:\n    \n    - `Default` (default): Fails if there is a file name conflict\n        \n    - `SkipExisting`: Skips the file being moved if an existing file with the same name already exists in the target folder\n        \n    - `VersionExisting`: If a file with the same name exists in the target folder, the new file will replace it as a new version of the file. The existing file would show up as a previous version.\n        \n    - `Replace`: If a file with the same name exists in the target folder, the new file will replace it without keeping a version of the existing file.\n        \n    - `NewCopy`: If a file with the same name exists in the target folder, the new file will be added with a new unique filename to avoid a filename conflict.\n        \n\nThe body of the response has the following fields:\n\n- `errors`: An array of error messages.\n    \n- `confirmations`: An array of confirmation messages.\n    \n- `completedWithoutErrors`: A boolean that indicates if the request was processed without any errors."
              },
              "response": [
                {
                  "name": "3.1.6: Copy File(s)",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n  \"FileIds\" : \"{{kpc-seed-3.1.6-file}}\",\r\n  \"FileMode\" : \"Replace\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/copy/to/:folderId",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "files",
                        "copy",
                        "to",
                        ":folderId"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-3.1.6-dest}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:26:54 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "433"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"errors\": [],\n    \"confirmations\": [],\n    \"completedWithoutErrors\": true\n}"
                }
              ]
            },
            {
              "name": "3.1.7: Delete File",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/files/:fileId/delete",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "files",
                    ":fileId",
                    "delete"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-root}}"
                    },
                    {
                      "key": "fileId",
                      "value": "{{kpc-seed-3.1.7-file}}"
                    }
                  ]
                },
                "description": "[File - Delete | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/DeleteaFile)\n\nDeletes the file with ID `:fileId` from the folder with ID `:folderId` in project `:projectId`.\n\nThe response body is empty, and it always returns `200 OK` even if the file does not exist. You may use 3.1.1: Get File Info to check completion status by checking the response for the following:\n\n``` json\n{\n    \"errorCode\": \"File_Deleted\",\n    \"message\": \"The file has been deleted\"\n}\n\n ```"
              },
              "response": [
                {
                  "name": "3.1.7: Delete File",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/files/:fileId/delete",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "files",
                        ":fileId",
                        "delete"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-root}}"
                        },
                        {
                          "key": "fileId",
                          "value": "{{kpc-seed-3.1.7-file}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Length",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:29:01 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "289"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "3.1.8: Upload File",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "File contents here...\r\n\r\n{{$randomLoremParagraphs}}"
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/addfile/:fileName",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "addfile",
                    ":fileName"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-root}}"
                    },
                    {
                      "key": "fileName",
                      "value": "Created by 3.1.8_{{$randomInt}}.txt"
                    }
                  ]
                },
                "description": "[File - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/AddFile)\n\nAdds a file called `:fileName` to the folder `:folderId` in project `:projectId`.\n\nThe request body should contain the contents of the file being uploaded.\n\nThe body of the response has the following fields:\n\n- `entityId`: The ID of the file\n    \n- `partitionEntityId`: The ID of the folder the file resides in\n    \n- `name`: The name of the file\n    \n- `checksum`: A hash of the file\n    \n- `size`: The size of the file in bytes\n    \n- `syncIncluded`: Unused, always `false`"
              },
              "response": [
                {
                  "name": "3.1.8: Upload File",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "File contents here...\r\n\r\n{{$randomLoremParagraphs}}"
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/addfile/:fileName",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "addfile",
                        ":fileName"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-root}}"
                        },
                        {
                          "key": "fileName",
                          "value": "Created by 3.1.8_{{$randomInt}}.txt"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:31:53 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "public, no-transform, max-age=31536000"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "382"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59965666,\n    \"partitionEntityId\": 59915237,\n    \"name\": \"Created by 3.1.8_230.txt\",\n    \"checksum\": \"a6b481a1976c0eab6a3a55c09af95bf7\",\n    \"size\": 530,\n    \"syncIncluded\": false\n}"
                }
              ]
            },
            {
              "name": "3.1.9: Combine Files",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n  \"FileIds\": \"{{kpc-seed-3.1.9-fileA}}, {{kpc-seed-3.1.9-fileB}}\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/combine/to/:targetFolderId?fileName=Combined by 3.1.9_{{$randomInt}}.pdf",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "files",
                    "combine",
                    "to",
                    ":targetFolderId"
                  ],
                  "query": [
                    {
                      "key": "fileName",
                      "value": "Combined by 3.1.9_{{$randomInt}}.pdf"
                    }
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "targetFolderId",
                      "value": "{{kpc-seed-root}}"
                    }
                  ]
                },
                "description": "[Files - Combine | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/CombineFiles)\n\nCombines two or more files from project `:projectId` into one file called `:fileName`, and places them into folder `:targetFolderId`. Note that `:fileName` is a query parameter.\n\nThe combined result is just like a [Composite Reference/Document](https://build.kahua.com/en/Partners/kBuilder/Guides/References#composite-references); each document is rendered, then all of the pages are concatenated into a single PDF.\n\nThe body of the request contains the following fields:\n\n- `FileIds`: A comma-separated list of file ID's to combine\n    \n\nThe body of the response is the same as 3.1.4"
              },
              "response": [
                {
                  "name": "3.1.9: Combine Files",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n  \"FileIds\": \"{{kpc-seed-3.1.9-fileA}}, {{kpc-seed-3.1.9-fileB}}\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/files/combine/to/:targetFolderId?fileName=Combined by 3.1.9_{{$randomInt}}.pdf",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "files",
                        "combine",
                        "to",
                        ":targetFolderId"
                      ],
                      "query": [
                        {
                          "key": "fileName",
                          "value": "Combined by 3.1.9_{{$randomInt}}.pdf"
                        }
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "targetFolderId",
                          "value": "{{kpc-seed-root}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:32:17 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "1219"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"errors\": [],\n    \"confirmations\": [],\n    \"completedWithoutErrors\": true\n}"
                }
              ]
            },
            {
              "name": "3.1.10: Check Locked File",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/checkLockedFile?fileName=Example 3.1.10.txt",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "checkLockedFile"
                  ],
                  "query": [
                    {
                      "key": "fileName",
                      "value": "Example 3.1.10.txt"
                    }
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-3.1.10-file}}"
                    }
                  ]
                },
                "description": "[File - Check Locked | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/CheckLockedFile)\n\nReturns a boolean that determines if the file with name `:fileName` in folder `:folderId` in project `:projectId` is locked. Note that `:fileName` is a query param.\n\n> **WARNING**: This request will always return `false` if the ID of the file is used instead of its name (unless there is a file with the same name as the ID, in which case it will return the lock status of that file) \n  \n\nThe locked status of a file is stored in the `LockKey` attribute (defined in the `kahua_Core.kahua_Base` entity). The contents of this attribute are described in 3.1.12. If this attribute is null, the file is unlocked. Otherwise, the file was locked by the user specified in the value of the `LockKey` attribute."
              },
              "response": []
            },
            {
              "name": "3.1.11: (ACT) Unlock File",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Unlock File\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {\r\n                    \"Directives\": [\r\n                        {\r\n                            \"PropertyName\": \"Map\",\r\n                            \"Assignments\": [\r\n                                {\r\n                                    \"PropertyName\": \"Empty\",\r\n                                    \"To\": \"LockKey\"\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                }\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": {{kpc-seed-3.1.10-file}},\r\n                    \"entityDef\": \"kahua_FileManager.File\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_FileManager"
                    }
                  ]
                },
                "description": "Unlocks a file (specifically, the one used in 3.1.10). This works by using an activity with a `Map` directive to clear the `LockKey` attribute."
              },
              "response": []
            },
            {
              "name": "3.1.12: (ACT) Lock File",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      "const date = new Date();\r",
                      "const isPM = date.getUTCHours() >= 12;\r",
                      "\r",
                      "const month = date.getUTCMonth();\r",
                      "const day = date.getUTCDate();\r",
                      "const year = date.getUTCFullYear();\r",
                      "const hour = date.getUTCHours() - (isPM ? 12 : 0);\r",
                      "const minute = date.getUTCMinutes();\r",
                      "const second = date.getUTCSeconds();\r",
                      "const suffix = isPM ? \"PM\" : \"AM\";\r",
                      "\r",
                      "const dateString = `${month}/${day}/${year} ${hour}:${minute}:${second} ${suffix}`;\r",
                      "pm.variables.set(\"dateString\", dateString);"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"Lock File\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"Set\": \"MySet\",\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"Name\": \"MySet\",\r\n            \"entities\": [\r\n                {\r\n                    \"id\": {{kpc-seed-3.1.10-file}},\r\n                    \"entityDef\": \"kahua_FileManager.File\",\r\n                    \"attributes\": [\r\n                        {\r\n                            \"name\": \"LockKey\",\r\n                            \"value\": \"<State CreatedDateTime=\\\"{{dateString}}\\\" OwnerFirstName=\\\"{{seed-contact-firstName}}\\\" OwnerLastName=\\\"{{seed-contact-lastName}}\\\" PersonalDomainKey=\\\"{{seed-contact-email}}\\\" CurrentState=\\\"Locked\\\" />\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_FileManager"
                    }
                  ]
                },
                "description": "Locks a file (specifically, the one used in 3.1.10). This works by using an activity to update the `LockKey` attribute.\n\nThe `LockKey` attribute is a string containing a single XML tag named `State` with the following attributes:\n\n- `CreatedDateTime` (optional): The UTC date and time the file was locked; uses the following format (in linux `date` command syntax): `%-m/%-d/%Y %-I:%-M:%-S %p`\n    \n    - See pre-request script for a JavaScript example of how to generate this string\n        \n- `OwnerFirstName`: The first name of the user who is locking the file\n    \n- `OwnerLastName`: The last name of the user who is locking the file\n    \n- `PersonalDomainKey`: The personal domain key of the user who is locking the file\n    \n- `CurrentState`: Equal to `Locked`"
              },
              "response": []
            },
            {
              "name": "3.1.13: Add Controlled File",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "File contents here...\r\n\r\n{{$randomLoremParagraphs}}",
                  "options": {
                    "raw": {
                      "language": "text"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/addcontrolled/:fileName/:revisionNumber/:sheetNumber",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "addcontrolled",
                    ":fileName",
                    ":revisionNumber",
                    ":sheetNumber"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-3.1.13-folder}}"
                    },
                    {
                      "key": "fileName",
                      "value": "Created by 3.1.13 {{$randomInt}}"
                    },
                    {
                      "key": "revisionNumber",
                      "value": "{{$randomInt}}"
                    },
                    {
                      "key": "sheetNumber",
                      "value": "{{$randomInt}}"
                    }
                  ]
                },
                "description": "[Controlled File - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/AddControlledFile)\n\nCreates a new controlled file within `:folderId`. Controlled files feature a couple of new parameters, `revisionNumber` and `sheetnumber`. Some notes regarding adding controlled files:\n\n- To ADD a new revision (i.e. first revision), pass in a new unique sheetNumber (that doesn't match an existing revision).\n    \n- To REVISE an existing revision, pass in a sheetNumber that matches the revision (to revise) and a different revisionNumber.\n    \n- To VERSION an existing revision, pass in a sheetNumber and revisionNumber that matches the target revision to version."
              },
              "response": [
                {
                  "name": "3.1.13: Add Controlled File",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "File contents here...\r\n\r\n{{$randomLoremParagraphs}}",
                      "options": {
                        "raw": {
                          "language": "text"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/addcontrolled/:fileName/:revisionNumber/:sheetNumber",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "addcontrolled",
                        ":fileName",
                        ":revisionNumber",
                        ":sheetNumber"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-3.1.13-folder}}"
                        },
                        {
                          "key": "fileName",
                          "value": "Created by 3.1.13 {{$randomInt}}"
                        },
                        {
                          "key": "revisionNumber",
                          "value": "{{$randomInt}}"
                        },
                        {
                          "key": "sheetNumber",
                          "value": "{{$randomInt}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:37:11 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "870"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59965753,\n    \"partitionEntityId\": 59915245,\n    \"name\": \"Created by 3.1.13 714\",\n    \"checksum\": \"64ccc9c4c02b65dead8586587f01b5d3\",\n    \"size\": 705,\n    \"syncIncluded\": false\n}"
                }
              ]
            }
          ],
          "description": "This section details endpoints that manipulate files."
        },
        {
          "name": "3.2: Folders",
          "item": [
            {
              "name": "3.2.1: Get Folder Info",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/info",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "info"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-root}}"
                    }
                  ]
                },
                "description": "[Folder - Get Info | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/GetFolderInfo)\n\nReturns basic information relating to the folder `:folderId` in project `:projectId`.\n\nThe response body has the following fields:\n\n- `entityId`: The ID of the folder\n    \n- `partitionEntityId`: The ID of the folder's parent\n    \n- `name`: The name of the folder\n    \n- `path`: The path to the folder in the project\n    \n- `syncIncluded`: Unused, always `false`"
              },
              "response": [
                {
                  "name": "3.2.1: Get Folder Info",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/info",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "info"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-root}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:37:28 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "19"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59915237,\n    \"partitionEntityId\": 59914896,\n    \"name\": \"Kahua Postman Collection\",\n    \"path\": \"Kahua Postman Collection\",\n    \"syncIncluded\": false\n}"
                }
              ]
            },
            {
              "name": "3.2.2: List Partition Contents",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:partitionId/filemanager/list",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "filemanager",
                    "list"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{kpc-seed-root}}"
                    }
                  ]
                },
                "description": "[File Manager - List | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/GetFileManagerList)\n\nReturns the folder details and details for all top-level folders/files contained within the folder/project `:partitionId`, excluding subfolders.\n\n> _**NOTE**_: This request does not include subfolders in the response. If you would like to include subfolders in the response, use 3.2.3 instead. \n  \n\nThe response body has the following fields:\n\n- `entityId`: Equal to `:folderId`\n    \n- `currentMarker`: The ID of the marker that details the last action taken on any entity in the folder `:folderId` or any of its subfolders. See 3.3.1 for more details.\n    \n- `projectPath`: The path to the folder `:folderId`, relative to the root of the domain\n    \n- `folders`: An array of what folders are inside the requested folder, each is an object with the same fields as the response body of 3.2.1\n    \n- `files`: An array of what files are inside the requested folder, each is an object with the same fields as the response body of 3.1.1"
              },
              "response": [
                {
                  "name": "3.2.2: List Partition Contents",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:partitionId/filemanager/list",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "filemanager",
                        "list"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "{{kpc-seed-root}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:40:43 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "24"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59915237,\n    \"currentMarker\": 66480890,\n    \"projectPath\": \"PostmanBasicAuthTesting\\\\Kahua Postman Collection\",\n    \"folders\": [\n        {\n            \"entityId\": 59915245,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.13 Destination\",\n            \"path\": \"3.1.13 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915244,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.6 Destination\",\n            \"path\": \"3.1.6 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915243,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.5 Destination\",\n            \"path\": \"3.1.5 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915242,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.7 Folder\",\n            \"path\": \"3.2.7 Folder\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915241,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.6 Destination\",\n            \"path\": \"3.2.6 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915240,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.6 Source\",\n            \"path\": \"3.2.6 Source\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915239,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.5 Folder\",\n            \"path\": \"3.2.5 Folder\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915238,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.1 Folder\",\n            \"path\": \"3.2.1 Folder\",\n            \"syncIncluded\": false\n        }\n    ],\n    \"files\": [\n        {\n            \"entityId\": 59915247,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.1 File.txt\",\n            \"checksum\": \"a7d55679df3e08c1e8a4c58e7ffec1da\",\n            \"size\": 567,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915250,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"RENAMED_140 3.1.4 File.txt\",\n            \"checksum\": \"7938b3c526007882ba0aa7f69f011055\",\n            \"size\": 589,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915262,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.9 File A.txt\",\n            \"checksum\": \"f6bfabf221f726b7091e97c0799baac3\",\n            \"size\": 17,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915265,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.9 File B.txt\",\n            \"checksum\": \"88198f6d4cecc3965063f730cb828a6b\",\n            \"size\": 17,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915256,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.6 File.txt\",\n            \"checksum\": \"44f11ebd61f87ff3c775eb0845ffe256\",\n            \"size\": 624,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915268,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.10 File.txt\",\n            \"checksum\": \"33bcfcb587f24ffaf438b667d9c99e38\",\n            \"size\": 705,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59965666,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"Created by 3.1.8_230.txt\",\n            \"checksum\": \"a6b481a1976c0eab6a3a55c09af95bf7\",\n            \"size\": 530,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59965670,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"Combined by 3.1.9_238.pdf\",\n            \"checksum\": \"45abf8f4c1d30f47a6eab7258a0d3a3d\",\n            \"size\": 26101,\n            \"syncIncluded\": false\n        }\n    ]\n}"
                }
              ]
            },
            {
              "name": "3.2.3: List All Partition Contents",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:partitionId/filemanager/all",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "filemanager",
                    "all"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{kpc-seed-root}}"
                    }
                  ]
                },
                "description": "[File Manager - Get All | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/FileManagerAll)\n\nLists all folders and files existing within a project"
              },
              "response": [
                {
                  "name": "3.2.3: List All Partition Contents",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:partitionId/filemanager/all",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "filemanager",
                        "all"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "{{kpc-seed-root}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:40:51 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "20"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59915237,\n    \"currentMarker\": 66480890,\n    \"projectPath\": \"PostmanBasicAuthTesting\\\\Kahua Postman Collection\",\n    \"folders\": [\n        {\n            \"entityId\": 59915245,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.13 Destination\",\n            \"path\": \"3.1.13 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915244,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.6 Destination\",\n            \"path\": \"3.1.6 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915243,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.5 Destination\",\n            \"path\": \"3.1.5 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915242,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.7 Folder\",\n            \"path\": \"3.2.7 Folder\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915241,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.6 Destination\",\n            \"path\": \"3.2.6 Destination\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915240,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.6 Source\",\n            \"path\": \"3.2.6 Source\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915239,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.5 Folder\",\n            \"path\": \"3.2.5 Folder\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915238,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.2.1 Folder\",\n            \"path\": \"3.2.1 Folder\",\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915237,\n            \"partitionEntityId\": 59914896,\n            \"name\": \"Kahua Postman Collection\",\n            \"path\": \"PostmanBasicAuthTesting\\\\Kahua Postman Collection\",\n            \"syncIncluded\": false\n        }\n    ],\n    \"files\": [\n        {\n            \"entityId\": 59915247,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.1 File.txt\",\n            \"checksum\": \"a7d55679df3e08c1e8a4c58e7ffec1da\",\n            \"size\": 567,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915250,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"RENAMED_140 3.1.4 File.txt\",\n            \"checksum\": \"7938b3c526007882ba0aa7f69f011055\",\n            \"size\": 589,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915262,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.9 File A.txt\",\n            \"checksum\": \"f6bfabf221f726b7091e97c0799baac3\",\n            \"size\": 17,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915265,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.9 File B.txt\",\n            \"checksum\": \"88198f6d4cecc3965063f730cb828a6b\",\n            \"size\": 17,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915253,\n            \"partitionEntityId\": 59915243,\n            \"name\": \"3.1.5 File.txt\",\n            \"checksum\": \"c096aaca0d15a43c3e2058473249749c\",\n            \"size\": 491,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915256,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.6 File.txt\",\n            \"checksum\": \"44f11ebd61f87ff3c775eb0845ffe256\",\n            \"size\": 624,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59965613,\n            \"partitionEntityId\": 59915244,\n            \"name\": \"3.1.6 File.txt\",\n            \"checksum\": \"44f11ebd61f87ff3c775eb0845ffe256\",\n            \"size\": 624,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59915268,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"3.1.10 File.txt\",\n            \"checksum\": \"33bcfcb587f24ffaf438b667d9c99e38\",\n            \"size\": 705,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59965666,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"Created by 3.1.8_230.txt\",\n            \"checksum\": \"a6b481a1976c0eab6a3a55c09af95bf7\",\n            \"size\": 530,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59965670,\n            \"partitionEntityId\": 59915237,\n            \"name\": \"Combined by 3.1.9_238.pdf\",\n            \"checksum\": \"45abf8f4c1d30f47a6eab7258a0d3a3d\",\n            \"size\": 26101,\n            \"syncIncluded\": false\n        },\n        {\n            \"entityId\": 59965753,\n            \"partitionEntityId\": 59915245,\n            \"name\": \"Created by 3.1.13 714\",\n            \"checksum\": \"64ccc9c4c02b65dead8586587f01b5d3\",\n            \"size\": 705,\n            \"syncIncluded\": false\n        }\n    ]\n}"
                }
              ]
            },
            {
              "name": "3.2.4: Create New Folder",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/addfolder/:newFolderName",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "addfolder",
                    ":newFolderName"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-root}}"
                    },
                    {
                      "key": "newFolderName",
                      "value": "Created by 3.2.4 {{$randomInt}}{{$randomInt}}{{$randomInt}}"
                    }
                  ]
                },
                "description": "[Folder - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/AddFolder)\n\nCreates a folder named `:newFolderName` inside of folder `:folderId` in project `:projectId`.\n\nTo create a folder in the root of a project, use the ID of the project for both `:projectId` and `:folderId`. Similarly, use zero for both to create a folder in the root of the domain.\n\nThe response body has the following fields:\n\n- `entityId`: The ID of the folder\n    \n- `partitionEntityId`: The ID of the folder's parent\n    \n- `name`: The name of the folder\n    \n- `path`: The path to the folder in the project\n    \n- `syncIncluded`: Unused, always `false`\n    \n- `partitionEntityDef`: Always `kahua_FileManager.File`"
              },
              "response": [
                {
                  "name": "3.2.4: Create New Folder",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/addfolder/:newFolderName",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "addfolder",
                        ":newFolderName"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-root}}"
                        },
                        {
                          "key": "newFolderName",
                          "value": "Created by 3.2.4 {{$randomInt}}{{$randomInt}}{{$randomInt}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:41:45 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "172"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59965810,\n    \"partitionEntityId\": 59915237,\n    \"name\": \"Created by 3.2.4 179219986\",\n    \"path\": \"Created by 3.2.4 179219986\",\n    \"syncIncluded\": false,\n    \"partitionEntityDef\": \"kahua_FileManager.File\"\n}"
                }
              ]
            },
            {
              "name": "3.2.5: Rename Folder",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/rename/:newFolderName",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "rename",
                    ":newFolderName"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-3.2.5-folder}}"
                    },
                    {
                      "key": "newFolderName",
                      "value": "3.2.5 Renamed Folder {{$randomInt}}"
                    }
                  ]
                },
                "description": "[Folder - Rename | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/RenameFolder)\n\nRenames the folder`:folderId` in project `:projectId` to `:newFolderName`.\n\nThe response body is the same as 3.1.4."
              },
              "response": [
                {
                  "name": "3.2.5: Rename Folder",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/rename/:newFolderName",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "rename",
                        ":newFolderName"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-3.2.5-folder}}"
                        },
                        {
                          "key": "newFolderName",
                          "value": "3.2.5 Renamed Folder {{$randomInt}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:41:55 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "316"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"errors\": [],\n    \"confirmations\": [],\n    \"completedWithoutErrors\": true\n}"
                }
              ]
            },
            {
              "name": "3.2.6: Move Folder",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/move/to/:targetFolderId",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "move",
                    "to",
                    ":targetFolderId"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-3.2.6-source}}"
                    },
                    {
                      "key": "targetFolderId",
                      "value": "{{kpc-seed-3.2.6-dest}}"
                    }
                  ]
                },
                "description": "[Folder - Move | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/MoveToFolder)  \n  \n\nMoves the folder `:folderId` to folder `:targetFolderId` in project `:projectId`.\n\nThe response body is the same as 3.1.4"
              },
              "response": [
                {
                  "name": "3.2.6: Move Folder",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/move/to/:targetFolderId",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "move",
                        "to",
                        ":targetFolderId"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-3.2.6-source}}"
                        },
                        {
                          "key": "targetFolderId",
                          "value": "{{kpc-seed-3.2.6-dest}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:42:04 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "1002"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"errors\": [],\n    \"confirmations\": [],\n    \"completedWithoutErrors\": true\n}"
                }
              ]
            },
            {
              "name": "3.2.7: Delete Folder",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/delete",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "delete"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-3.2.7-folder}}"
                    }
                  ]
                },
                "description": "[Folder - Delete | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/DeleteFolder)\n\nDeletes the folder `:folderId` from project `:projectId`. If there are any locked files in this folder, this request will return `400 BadRequest` (see 3.1.11 for how to unlock).\n\nThe response body is empty. It will return `200 OK` on success. Unlike 3.1.7, calling the request again on the deleted folder will return `400 Bad Request`."
              },
              "response": []
            },
            {
              "name": "3.2.8: Create Controlled Folder",
              "request": {
                "method": "POST",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/add/controlled/:folderName",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "folders",
                    ":folderId",
                    "add",
                    "controlled",
                    ":folderName"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "folderId",
                      "value": "{{kpc-seed-root}}"
                    },
                    {
                      "key": "folderName",
                      "value": "Controlled Folder by 3.2.8 {{$randomInt}}"
                    }
                  ]
                },
                "description": "[Controlled Folder - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/AddControlledFolder)\n\nAdds a new Controlled Folder at `:folderId`. Works the same as the 3.2.4 but gives the folder the controlled property."
              },
              "response": [
                {
                  "name": "3.2.8: Create Controlled Folder",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/folders/:folderId/add/controlled/:folderName",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "folders",
                        ":folderId",
                        "add",
                        "controlled",
                        ":folderName"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "folderId",
                          "value": "{{kpc-seed-root}}"
                        },
                        {
                          "key": "folderName",
                          "value": "Controlled Folder by 3.2.8 {{$randomInt}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:43:22 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "350"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"entityId\": 59965818,\n    \"partitionEntityId\": 59915237,\n    \"name\": \"Controlled Folder by 3.2.8 396\",\n    \"path\": \"Controlled Folder by 3.2.8 396\",\n    \"syncIncluded\": false,\n    \"partitionEntityDef\": \"kahua_FileManager.DrawingLogRevision\"\n}"
                }
              ]
            }
          ],
          "description": "This section details requests that manipulate folders."
        },
        {
          "name": "3.3: Miscellaneous File Management",
          "item": [
            {
              "name": "3.3.1: Get File Manager Markers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/markers/from/:fileMarker",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "filemanager",
                    "markers",
                    "from",
                    ":fileMarker"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "fileMarker",
                      "value": "0"
                    }
                  ]
                },
                "description": "[Markers - File Manager | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/GetFileManagerFromMarker)\n\nThis request is identical to calling 5.3.3 twice: once for `kahua_FileManager.File` entities and again for `kahua_FileManager.Folder` entities. The `markers` list returned from these two calls are then merged together into one list."
              },
              "response": [
                {
                  "name": "3.3.1: Get File Manager Markers",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/filemanager/markers/from/:fileMarker",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "filemanager",
                        "markers",
                        "from",
                        ":fileMarker"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "fileMarker",
                          "value": "0"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Thu, 29 Jan 2026 16:43:35 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "19"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"markers\": [\n        {\n            \"id\": 66428010,\n            \"markerTime\": \"2026-01-29T13:54:32.277\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914905,\n            \"entityInstanceId\": 59914905,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428011,\n            \"markerTime\": \"2026-01-29T13:54:32.480\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914906,\n            \"entityInstanceId\": 59914906,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428012,\n            \"markerTime\": \"2026-01-29T13:54:32.690\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914907,\n            \"entityInstanceId\": 59914907,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428013,\n            \"markerTime\": \"2026-01-29T13:54:32.883\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914908,\n            \"entityInstanceId\": 59914908,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428014,\n            \"markerTime\": \"2026-01-29T13:54:33.067\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914909,\n            \"entityInstanceId\": 59914909,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428015,\n            \"markerTime\": \"2026-01-29T13:54:33.283\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914910,\n            \"entityInstanceId\": 59914910,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428016,\n            \"markerTime\": \"2026-01-29T13:54:33.480\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914911,\n            \"entityInstanceId\": 59914911,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428017,\n            \"markerTime\": \"2026-01-29T13:54:33.700\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914912,\n            \"entityInstanceId\": 59914912,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428018,\n            \"markerTime\": \"2026-01-29T13:54:33.897\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914913,\n            \"entityInstanceId\": 59914913,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428020,\n            \"markerTime\": \"2026-01-29T13:54:34.670\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914915,\n            \"entityInstanceId\": 59914915,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428024,\n            \"markerTime\": \"2026-01-29T13:54:35.100\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914918,\n            \"entityInstanceId\": 59914918,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428028,\n            \"markerTime\": \"2026-01-29T13:54:35.397\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914921,\n            \"entityInstanceId\": 59914921,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428032,\n            \"markerTime\": \"2026-01-29T13:54:35.720\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914924,\n            \"entityInstanceId\": 59914924,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428036,\n            \"markerTime\": \"2026-01-29T13:54:36.027\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914927,\n            \"entityInstanceId\": 59914927,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428040,\n            \"markerTime\": \"2026-01-29T13:54:36.317\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914930,\n            \"entityInstanceId\": 59914930,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428044,\n            \"markerTime\": \"2026-01-29T13:54:36.583\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914933,\n            \"entityInstanceId\": 59914933,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428048,\n            \"markerTime\": \"2026-01-29T13:54:36.870\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914936,\n            \"entityInstanceId\": 59914936,\n            \"entityPartitionId\": 59914905,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428052,\n            \"markerTime\": \"2026-01-29T13:54:37.060\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914936,\n            \"entityInstanceId\": 59914939,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66428491,\n            \"markerTime\": \"2026-01-29T14:05:53.877\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59914936,\n            \"entityInstanceId\": 59915235,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66428493,\n            \"markerTime\": \"2026-01-29T14:05:54.163\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914905,\n            \"entityInstanceId\": 59914905,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Delete\"\n        },\n        {\n            \"id\": 66428495,\n            \"markerTime\": \"2026-01-29T14:05:54.037\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59914905,\n            \"entityInstanceId\": 59914905,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 66428496,\n            \"markerTime\": \"2026-01-29T14:05:54.300\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915237,\n            \"entityInstanceId\": 59915237,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428497,\n            \"markerTime\": \"2026-01-29T14:05:54.490\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915238,\n            \"entityInstanceId\": 59915238,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428498,\n            \"markerTime\": \"2026-01-29T14:05:54.680\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915239,\n            \"entityInstanceId\": 59915239,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428499,\n            \"markerTime\": \"2026-01-29T14:05:54.883\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915240,\n            \"entityInstanceId\": 59915240,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428500,\n            \"markerTime\": \"2026-01-29T14:05:55.070\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915241,\n            \"entityInstanceId\": 59915241,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428501,\n            \"markerTime\": \"2026-01-29T14:05:55.267\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915242,\n            \"entityInstanceId\": 59915242,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428502,\n            \"markerTime\": \"2026-01-29T14:05:55.470\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915243,\n            \"entityInstanceId\": 59915243,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428503,\n            \"markerTime\": \"2026-01-29T14:05:55.657\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915244,\n            \"entityInstanceId\": 59915244,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428504,\n            \"markerTime\": \"2026-01-29T14:05:55.863\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915245,\n            \"entityInstanceId\": 59915245,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428506,\n            \"markerTime\": \"2026-01-29T14:05:56.537\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915247,\n            \"entityInstanceId\": 59915247,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428510,\n            \"markerTime\": \"2026-01-29T14:05:56.883\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915250,\n            \"entityInstanceId\": 59915250,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428514,\n            \"markerTime\": \"2026-01-29T14:05:57.207\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915253,\n            \"entityInstanceId\": 59915253,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428518,\n            \"markerTime\": \"2026-01-29T14:05:57.533\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915256,\n            \"entityInstanceId\": 59915256,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428522,\n            \"markerTime\": \"2026-01-29T14:05:57.843\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915259,\n            \"entityInstanceId\": 59915259,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428526,\n            \"markerTime\": \"2026-01-29T14:05:58.113\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915262,\n            \"entityInstanceId\": 59915262,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428530,\n            \"markerTime\": \"2026-01-29T14:05:58.397\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915265,\n            \"entityInstanceId\": 59915265,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428534,\n            \"markerTime\": \"2026-01-29T14:05:58.727\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915268,\n            \"entityInstanceId\": 59915268,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66428538,\n            \"markerTime\": \"2026-01-29T14:05:58.937\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915268,\n            \"entityInstanceId\": 59915271,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480211,\n            \"markerTime\": \"2026-01-29T16:22:07.047\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915250,\n            \"entityInstanceId\": 59965291,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480681,\n            \"markerTime\": \"2026-01-29T16:25:05.540\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915253,\n            \"entityInstanceId\": 59915253,\n            \"entityPartitionId\": 59915243,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Move\"\n        },\n        {\n            \"id\": 66480682,\n            \"markerTime\": \"2026-01-29T16:25:05.487\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915253,\n            \"entityInstanceId\": 59915253,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 66480683,\n            \"markerTime\": \"2026-01-29T16:25:05.483\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915253,\n            \"entityInstanceId\": 59915253,\n            \"entityPartitionId\": 59915243,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Move\"\n        },\n        {\n            \"id\": 66480684,\n            \"markerTime\": \"2026-01-29T16:25:05.477\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915253,\n            \"entityInstanceId\": 59915253,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 66480688,\n            \"markerTime\": \"2026-01-29T16:26:54.293\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59965613,\n            \"entityInstanceId\": 59965613,\n            \"entityPartitionId\": 59915244,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66480693,\n            \"markerTime\": \"2026-01-29T16:29:01.373\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915259,\n            \"entityInstanceId\": 59915259,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Delete\"\n        },\n        {\n            \"id\": 66480695,\n            \"markerTime\": \"2026-01-29T16:29:01.240\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915259,\n            \"entityInstanceId\": 59915259,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 66480756,\n            \"markerTime\": \"2026-01-29T16:31:54.243\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59965666,\n            \"entityInstanceId\": 59965666,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66480774,\n            \"markerTime\": \"2026-01-29T16:32:18.117\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59965670,\n            \"entityInstanceId\": 59965670,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66480778,\n            \"markerTime\": \"2026-01-29T16:32:54.920\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915268,\n            \"entityInstanceId\": 59965673,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480784,\n            \"markerTime\": \"2026-01-29T16:34:31.327\",\n            \"entityDefName\": \"kahua_FileManager.File\",\n            \"entityId\": 59915268,\n            \"entityInstanceId\": 59965677,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480947,\n            \"markerTime\": \"2026-01-29T16:41:45.470\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59965810,\n            \"entityInstanceId\": 59965810,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 66480948,\n            \"markerTime\": \"2026-01-29T16:41:55.700\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915239,\n            \"entityInstanceId\": 59965811,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480949,\n            \"markerTime\": \"2026-01-29T16:41:55.880\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915237,\n            \"entityInstanceId\": 59965812,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480950,\n            \"markerTime\": \"2026-01-29T16:42:03.937\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915240,\n            \"entityInstanceId\": 59915240,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 66480951,\n            \"markerTime\": \"2026-01-29T16:42:04.300\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915240,\n            \"entityInstanceId\": 59915240,\n            \"entityPartitionId\": 59915241,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Move\"\n        },\n        {\n            \"id\": 66480952,\n            \"markerTime\": \"2026-01-29T16:42:04.283\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915240,\n            \"entityInstanceId\": 59915240,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 66480953,\n            \"markerTime\": \"2026-01-29T16:42:04.253\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915237,\n            \"entityInstanceId\": 59965815,\n            \"entityPartitionId\": 59914896,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480954,\n            \"markerTime\": \"2026-01-29T16:42:04.220\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915241,\n            \"entityInstanceId\": 59965814,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 66480955,\n            \"markerTime\": \"2026-01-29T16:42:03.943\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915240,\n            \"entityInstanceId\": 59915240,\n            \"entityPartitionId\": 59915241,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Move\"\n        },\n        {\n            \"id\": 66480971,\n            \"markerTime\": \"2026-01-29T16:42:50.250\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915242,\n            \"entityInstanceId\": 59915242,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Delete\"\n        },\n        {\n            \"id\": 66480973,\n            \"markerTime\": \"2026-01-29T16:42:50.160\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59915242,\n            \"entityInstanceId\": 59915242,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 66480974,\n            \"markerTime\": \"2026-01-29T16:43:23.277\",\n            \"entityDefName\": \"kahua_FileManager.Folder\",\n            \"entityId\": 59965818,\n            \"entityInstanceId\": 59965818,\n            \"entityPartitionId\": 59915237,\n            \"domainPartitionId\": 59914896,\n            \"type\": \"Add\"\n        }\n    ]\n}"
                }
              ]
            }
          ],
          "description": "This section details file management requests that do not specifically regard files or folders."
        }
      ],
      "description": "This section details endpoints for managing files and folders within Kahua. By default, all requests in this section are configured to manipulate files inside of the \"Kahua Postman Collection\" folder created by 0.2. All of these files and folders can be seen in Kahua by opening Kahua's File Manager from within your chosen project (make sure your projectId in Postman matches your DomainPartitionId within Kahua)."
    },
    {
      "name": "4: Contacts",
      "item": [
        {
          "name": "4.1: People",
          "item": [
            {
              "name": "4.1.1: List Contacts",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "people"
                  ]
                },
                "description": "[Contacts - List | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/ListContacts)\n\nGets a list of all contacts within the given domain and project\n\nOptional query parameters include `skip`, `take`, and `searchText`as such:\n\n`/v1/domains/{domain}/contacts/people/:skip/:take/:searchText`\n\nThese parameters can be specified directly like so (skip 0, take 10, search for Brandon):\n\n`/v1/domains/{domain}/contacts/people/0/10/Brandon`\n\nOr, fully qualified (all are optional):\n\n`/v1/domains/{domain}/contacts/people?skip=0&take=10&searchText=Brandon`"
              },
              "response": [
                {
                  "name": "Get Contacts",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "people"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "362"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:03:36 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"id\": 49709788,\n        \"officeId\": 0,\n        \"companyId\": 49709785,\n        \"firstName\": \"App\",\n        \"lastName\": \"Dev\",\n        \"email\": \"kahuaappdev@gmail.com\"\n    },\n    {\n        \"id\": 49711149,\n        \"officeId\": 0,\n        \"companyId\": 49709785,\n        \"firstName\": \"Brandon\",\n        \"lastName\": \"Buckley\",\n        \"email\": \"bbuckley@kahua.com\"\n    }\n]"
                }
              ]
            },
            {
              "name": "4.1.2: Add Contact",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      "const { firstName, lastName } = JSON.parse(pm.variables.replaceIn(pm.request.body.raw));\r",
                      "const domain = pm.variables.replaceIn(\"{{$randomDomainName}}\");\r",
                      "pm.variables.set(\"email\", `${firstName}${lastName}@${domain}`);"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "if (pm.response.code == 200) {\r",
                      "    const id = pm.response.json().id;\r",
                      "    pm.collectionVariables.set(\"kpc-4.1.2-id\", id);\r",
                      "}"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n  \"firstName\" : \"{{$randomFirstName}}\",\r\n  \"lastName\" : \"{{$randomLastName}}\",\r\n  \"email\" : \"{{email}}\",\r\n  \"companyId\" : {{kpc-seed-company}},\r\n  \"officeId\": {{kpc-seed-office}}\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people/add",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "people",
                    "add"
                  ]
                },
                "description": "[Contact - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/AddContact)\n\nAdds a contact to the company directory. If you do not have a `companyId`, see 4.2.1 for how to create a company.\n\nThe response body has the following fields:\n\n- `id`: The `Id` of the newly created `kahua_PeopleManager.kahua_Contact` entity\n    \n- Other fields are copied from the request body\n    \n\n> _**NOTE**_: You may have to close and restart the Contacts app in order to see the changes (instead of just clicking the refresh button)"
              },
              "response": [
                {
                  "name": "Create Contact",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n  \"firstName\" : \"Tressa\",\r\n  \"lastName\" : \"Roob\",\r\n  \"email\" : \"tressa@kraig.name\",\r\n  \"companyId\" : 49709785,\r\n  \"officeId\": 49709783\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people/add",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "people",
                        "add"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "131"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "855"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:06:30 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 50944301,\n    \"officeId\": 49709783,\n    \"companyId\": 49709785,\n    \"firstName\": \"Tressa\",\n    \"lastName\": \"Roob\",\n    \"email\": \"tressa@kraig.name\"\n}"
                }
              ]
            },
            {
              "name": "4.1.3: Add Contact From Directory",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n  \"email\" : \"bbuckley@kahua.com\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people/addFromCommunity",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "people",
                    "addFromCommunity"
                  ]
                },
                "description": "[Contact - Add from Directory | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/AddContactFromDirectory)\n\nAdds a contract from the global Kahua directory to the domain people directory.\n\nThe request body is an object with a single field: `email`. This is the email of the user to add from the directory. If the user does not exist, a `400 Bad Request` will be returned. If the user does exist, a `200 OK` will be returned, along with the following fields:\n\n- `id`: The ID of the added contact\n    \n- `officeId`: The ID of the contact's office\n    \n- `companyId`: The ID of the contact's company\n    \n- `email`: Same as the request body\n    \n\n> _**NOTE**_: You may have to close and restart the Contacts app in order to see the changes (instead of just clicking the refresh button)"
              },
              "response": [
                {
                  "name": "Add Contact From Directory",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n  \"email\" : \"bbuckley@kahua.com\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people/addFromCommunity",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "people",
                        "addFromCommunity"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "71"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "438"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:07:32 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 50921785,\n    \"officeId\": 0,\n    \"companyId\": 0,\n    \"email\": \"bbuckley@kahua.com\"\n}"
                }
              ]
            },
            {
              "name": "4.1.4: Update Contact",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    // /!\\ Run 4.1.2 First\r\n    \"id\": {{kpc-4.1.2-id}},\r\n    \"email\" : \"{{$randomEmail}}\",\r\n    \"firstName\": \"Updated\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people/update",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "people",
                    "update"
                  ]
                },
                "description": "[Contact - Update | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/UpdateContact)\n\nUpdate the details of a desired contact. The body of the request is the same as 4.1.2. The body of the response includes the same fields that were included in the request body as well as `companyId` and `officeId` (which will be zero if they were not specified in the request).\n\n> _**NOTE**_: You may have to close and restart the Contacts app in order to see the changes (instead of just clicking the refresh button)"
              },
              "response": [
                {
                  "name": "4.1.4: Update Contact",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\": 50944301,\r\n    \"email\" : \"updated@gmail.com\",\r\n    \"firstName\": \"Updated\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/people/update",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "people",
                        "update"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "102"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "172"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:08:10 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"id\": 50944301,\n    \"officeId\": 0,\n    \"companyId\": 0,\n    \"firstName\": \"Updated\",\n    \"email\": \"updated@gmail.com\"\n}"
                }
              ]
            }
          ],
          "description": "Endpoints for People Contacts"
        },
        {
          "name": "4.2: Companies",
          "item": [
            {
              "name": "4.2.1: Add Company",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      "pm.variables.set(\"rand-name\", pm.variables.replaceIn(\"{{$randomFirstName}}\"))"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "if (pm.response.code == 200) {\r",
                      "    const id = pm.response.json().id;\r",
                      "    pm.collectionVariables.set(\"kpc-4.2.1-id\", id);\r",
                      "}"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"id\": 0,\r\n    \"email\": \"{{$randomEmail}}\",\r\n    \"name\": \"{{rand-name}} Construction {{$randomInt}}\",\r\n    \"Legalname\": \"{{rand-name}} Construction_LLC\",\r\n    \"GovernmentId\": \"{{$randomInt}}\",\r\n    \"Overview\": \"{{$randomLoremWords}}\",\r\n    \"Type\": \"Construction\",\r\n    \"dunsnumber\": \"{{$randomInt}}\",\r\n    \"prequalified\": {{$randomBoolean}},\r\n    \"preferredvendor\": {{$randomBoolean}},\r\n    \"website\": \"{{$randomDomainName}}\",\r\n    \"VendorNumber\": \"{{$randomInt}}\",\r\n    \"twitter\": \"{{$randomUserName}}\",\r\n    \"facebook\": \"{{$randomUserName}}\",\r\n    \"linkedin\": \"{{$randomUserName}}\",\r\n    \"notes\": \"{{$randomLoremSentences}}\",\r\n    \"primaryoffice\": {\r\n        \"id\": 0,\r\n        \"companyid\": 0,\r\n        \"name\": \"{{$randomCity}} Office\",\r\n        \"countrycode\": \"{{$randomCountryCode}}\",\r\n        \"state\": \"Georgia\",\r\n        \"addressline1\": \"{{$randomStreetAddress}}\",\r\n        \"city\": \"{{$randomCity}}\",\r\n        \"postalcode\": \"{{$randomInt}}\",\r\n        \"phone\": \"{{$randomPhoneNumber}}\",\r\n        \"fax\": \"{{$randomInt}}\"\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/add",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "company",
                    "add"
                  ]
                },
                "description": "[Company - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-Add)\n\nAdds a new company to the company directory (in the contacts app)\n\n- the `id` is set to 0 so the API knows to assign a new `id` when the company is created\n    \n- the only required parameters are `id` and `name`"
              },
              "response": [
                {
                  "name": "Add Company",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\": 0,\r\n    \"email\": \"Toney_Goodwin@hotmail.com\",\r\n    \"name\": \"Madyson Construction 498\",\r\n    \"Legalname\": \"Madyson Construction_LLC\",\r\n    \"GovernmentId\": \"868\",\r\n    \"Overview\": \"quo cupiditate quia\",\r\n    \"Type\": \"Construction\",\r\n    \"dunsnumber\": \"171\",\r\n    \"prequalified\": true,\r\n    \"preferredvendor\": false,\r\n    \"website\": \"roxanne.name\",\r\n    \"VendorNumber\": \"451\",\r\n    \"twitter\": \"Savanah_Corwin51\",\r\n    \"facebook\": \"Brody76\",\r\n    \"linkedin\": \"Clementine.OConnell15\",\r\n    \"notes\": \"Sit dolores in aut necessitatibus asperiores qui cumque. Repellendus odio ut et neque officiis ratione et. Expedita tenetur quod vel vitae perferendis iusto vero et.\",\r\n    \"primaryoffice\": {\r\n        \"id\": 0,\r\n        \"companyid\": 0,\r\n        \"name\": \"Greenville Office\",\r\n        \"countrycode\": \"VU\",\r\n        \"state\": \"Georgia\",\r\n        \"addressline1\": \"46914 Morissette Cape\",\r\n        \"city\": \"Thompsonland\",\r\n        \"postalcode\": \"333\",\r\n        \"phone\": \"746-484-6231\",\r\n        \"fax\": \"552\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/add",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "company",
                        "add"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "822"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "313"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:08:43 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 50944316,\n    \"name\": \"Madyson Construction 498\",\n    \"legalName\": \"Madyson Construction_LLC\",\n    \"email\": \"Toney_Goodwin@hotmail.com\",\n    \"website\": \"roxanne.name\",\n    \"facebook\": \"Brody76\",\n    \"twitter\": \"Savanah_Corwin51\",\n    \"linkedIn\": \"Clementine.OConnell15\",\n    \"notes\": \"Sit dolores in aut necessitatibus asperiores qui cumque. Repellendus odio ut et neque officiis ratione et. Expedita tenetur quod vel vitae perferendis iusto vero et.\",\n    \"vendorNumber\": \"451\",\n    \"type\": \"Construction\",\n    \"governmentId\": \"868\",\n    \"dunsNumber\": \"171\",\n    \"prequalified\": true,\n    \"preferredVendor\": false,\n    \"overview\": \"quo cupiditate quia\",\n    \"primaryOffice\": {\n        \"id\": 50944314,\n        \"companyId\": 50944316,\n        \"name\": \"Greenville Office\",\n        \"countryCode\": \"VU\",\n        \"addressLine1\": \"46914 Morissette Cape\",\n        \"city\": \"Thompsonland\",\n        \"state\": \"Georgia\",\n        \"postalCode\": \"333\",\n        \"phone\": \"746-484-6231\",\n        \"fax\": \"522\"\n    },\n    \"primaryOfficeId\": 0\n}"
                }
              ]
            },
            {
              "name": "4.2.2: (QRY) Get Companies",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"PropertyName\": \"Query\",\n  \"EntityDef\": \"kahua_CompanyManager.kahua_Company\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": ""
                    }
                  ]
                },
                "description": "Return a list of all companies contained within the company directory and their details. Unlike 4.2.3, this returns the full `kahua_CompanyManager.kahua_Company` entity. Use this instead of 4.2.3 if you want to do more than simply get a list of all companies on the domain.\n\n> Note that `:partitionId` has been omitted and replaced with zero. This is because the Contacts app is a domain-scoped app, and querying from a different partition would yield no results unless certain scoping options (see 1.1.2 and 1.1.3) are used to include the domain root in the query."
              },
              "response": [
                {
                  "name": "Query Companies",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"PropertyName\": \"Query\",\n  \"EntityDef\": \"kahua_CompanyManager.kahua_Company\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/0/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        "0",
                        "query"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "5564"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "64"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:11:29 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 5,\n    \"entities\": [\n        {\n            \"id\": 50944316,\n            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsDomainCompany\": false,\n            \"IsInSyncWithCommunity\": false,\n            \"IsPreferredVendor\": false,\n            \"IsPublished\": false,\n            \"IsPrequalified\": true,\n            \"ModifiedDateTime\": \"2025-07-25T14:08:43.973\",\n            \"CreatedDateTime\": \"2025-07-25T14:08:43.973\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"Id\": 50944316,\n            \"InstanceId\": 50944316,\n            \"Name\": \"Madyson Construction 498\",\n            \"LegalName\": \"Madyson Construction_LLC\",\n            \"CompanyOverview\": \"quo cupiditate quia\",\n            \"GovernmentId\": \"868\",\n            \"DBNo\": \"171\",\n            \"VendorNumber\": \"451\",\n            \"Website\": \"roxanne.name\",\n            \"CompanyEmail\": \"Toney_Goodwin@hotmail.com\",\n            \"Twitter\": \"Savanah_Corwin51\",\n            \"Facebook\": \"Brody76\",\n            \"LinkedIn\": \"Clementine.OConnell15\",\n            \"Notes\": \"Sit dolores in aut necessitatibus asperiores qui cumque. Repellendus odio ut et neque officiis ratione et. Expedita tenetur quod vel vitae perferendis iusto vero et.\",\n            \"CompanyEntryType\": \"Construction\",\n            \"SourceApp\": \"kahua_CompanyManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"LongLabel\": \"Madyson Construction 498\",\n            \"ShortLabel\": \"Madyson Construction 498\",\n            \"DetailLabel\": \"Company: Madyson Construction 498\",\n            \"Logo\": {\n                \"identifier\": \"50944316-50944320\",\n                \"name\": \"default_company_logo_7F4B.png\"\n            },\n            \"Offices\": [\n                {\n                    \"id\": 50944314,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"PrimaryOffice\": {\n                \"id\": 50944314,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50924116,\n            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsDomainCompany\": false,\n            \"IsPreferredVendor\": false,\n            \"IsPrequalified\": false,\n            \"IsInSyncWithCommunity\": true,\n            \"IsPublished\": true,\n            \"ModifiedDateTime\": \"2025-07-17T17:52:37.173\",\n            \"CreatedDateTime\": \"2025-07-17T17:52:37.173\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"Id\": 50924116,\n            \"InstanceId\": 50924116,\n            \"Name\": \"SUngerCo\",\n            \"SourceApp\": \"kahua_CompanyManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"LongLabel\": \"SUngerCo\",\n            \"ShortLabel\": \"SUngerCo\",\n            \"DetailLabel\": \"Company: SUngerCo\",\n            \"Logo\": {\n                \"identifier\": \"50924116-50924118\",\n                \"name\": \"default_company_logo_7F4B.png\"\n            },\n            \"Offices\": [\n                {\n                    \"id\": 50924114,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"PrimaryOffice\": {\n                \"id\": 50924114,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50921790,\n            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsDomainCompany\": false,\n            \"IsPreferredVendor\": false,\n            \"IsPrequalified\": false,\n            \"IsInSyncWithCommunity\": true,\n            \"IsPublished\": true,\n            \"ModifiedDateTime\": \"2025-07-16T17:55:04.940\",\n            \"CreatedDateTime\": \"2025-07-16T17:55:04.940\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"Id\": 50921790,\n            \"InstanceId\": 50921790,\n            \"Name\": \"NMartinCo\",\n            \"SourceApp\": \"kahua_CompanyManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"LongLabel\": \"NMartinCo\",\n            \"ShortLabel\": \"NMartinCo\",\n            \"DetailLabel\": \"Company: NMartinCo\",\n            \"Logo\": {\n                \"identifier\": \"50921790-50921792\",\n                \"name\": \"default_company_logo_7F4B.png\"\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Offices\": [\n                {\n                    \"id\": 50921788,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"PrimaryOffice\": {\n                \"id\": 50921788,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50920804,\n            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsDomainCompany\": false,\n            \"IsPreferredVendor\": false,\n            \"IsPrequalified\": false,\n            \"IsInSyncWithCommunity\": true,\n            \"IsPublished\": true,\n            \"ModifiedDateTime\": \"2025-07-16T14:26:09.743\",\n            \"CreatedDateTime\": \"2025-07-16T14:26:09.743\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"PortableViewInstance\": 1,\n            \"Id\": 50920804,\n            \"InstanceId\": 50920804,\n            \"Name\": \"AVickCo\",\n            \"SourceApp\": \"kahua_CompanyManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"LongLabel\": \"AVickCo\",\n            \"ShortLabel\": \"AVickCo\",\n            \"DetailLabel\": \"Company: AVickCo\",\n            \"Logo\": {\n                \"identifier\": \"50920804-50920806\",\n                \"name\": \"default_company_logo_7F4B.png\"\n            },\n            \"Offices\": [\n                {\n                    \"id\": 50920802,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"PrimaryOffice\": {\n                \"id\": 50920802,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 49709785,\n            \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"IsPreferredVendor\": false,\n            \"IsPrequalified\": false,\n            \"MarkupEnabled\": false,\n            \"IsInSyncWithCommunity\": true,\n            \"IsPublished\": true,\n            \"IsDomainCompany\": true,\n            \"CreatedDateTime\": \"2025-05-19T17:53:13.570\",\n            \"ModifiedDateTime\": \"2025-05-19T17:53:13.867\",\n            \"PartitionId\": 0,\n            \"DomainPartitionId\": 0,\n            \"Instance\": 2,\n            \"PortableViewInstance\": 2,\n            \"Id\": 49709785,\n            \"InstanceId\": 49709794,\n            \"Name\": \"BBuckleyCo\",\n            \"SourceApp\": \"kahua_CompanyManager\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"LongLabel\": \"BBuckleyCo\",\n            \"ShortLabel\": \"BBuckleyCo\",\n            \"DetailLabel\": \"Company: BBuckleyCo\",\n            \"Logo\": {\n                \"identifier\": \"49709785-49709796\",\n                \"name\": \"default_company_logo_7F4B.png\"\n            },\n            \"Offices\": [\n                {\n                    \"id\": 49709783,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"PrimaryOffice\": {\n                \"id\": 49709783,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56354895\n}"
                }
              ]
            },
            {
              "name": "4.2.3: Get Companies",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/companies/:skip/:take/",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "companies",
                    ":skip",
                    ":take",
                    ""
                  ],
                  "variable": [
                    {
                      "key": "skip",
                      "value": "0"
                    },
                    {
                      "key": "take",
                      "value": "100"
                    }
                  ]
                },
                "description": "[Company - Get Multiple | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-GetMultiple)\n\nGets a list of some important details for companies within the domain. `:skip` and `:take` can be used to adjust how many of the companies you want listed in the response. This request has no fields for filtering the results (other than `:skip` and `:take`), use 4.2.2 for that instead.\n\nThe response body is a list of objects, each with the following fields:\n\n- `id`: The ID of the company\n    \n- `name`: The name of the company\n    \n- `prequalified`: Whether or not the company is prequalified (equal to the `IsPrequalified` attribute on the company entity)\n    \n- `preferredVendor`: Whether or not the company is the preferred vendor (equal to the `IsPreferredVendor` attribute on the company entity)\n    \n- `primaryOfficeId`: The ID of the company's primary office"
              },
              "response": [
                {
                  "name": "Get Companies",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/companies/:skip/:take/",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "companies",
                        ":skip",
                        ":take",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "skip",
                          "value": "0"
                        },
                        {
                          "key": "take",
                          "value": "100"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1025"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:11:59 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"id\": 49709785,\n        \"name\": \"BBuckleyCo\",\n        \"prequalified\": false,\n        \"preferredVendor\": false,\n        \"primaryOfficeId\": 49709783\n    },\n    {\n        \"id\": 50920804,\n        \"name\": \"AVickCo\",\n        \"prequalified\": false,\n        \"preferredVendor\": false,\n        \"primaryOfficeId\": 50920802\n    },\n    {\n        \"id\": 50921790,\n        \"name\": \"NMartinCo\",\n        \"prequalified\": false,\n        \"preferredVendor\": false,\n        \"primaryOfficeId\": 50921788\n    },\n    {\n        \"id\": 50924116,\n        \"name\": \"SUngerCo\",\n        \"prequalified\": false,\n        \"preferredVendor\": false,\n        \"primaryOfficeId\": 50924114\n    },\n    {\n        \"id\": 50944316,\n        \"name\": \"Madyson Construction 498\",\n        \"legalName\": \"Madyson Construction_LLC\",\n        \"email\": \"Toney_Goodwin@hotmail.com\",\n        \"website\": \"roxanne.name\",\n        \"facebook\": \"Brody76\",\n        \"twitter\": \"Savanah_Corwin51\",\n        \"linkedIn\": \"Clementine.OConnell15\",\n        \"notes\": \"Sit dolores in aut necessitatibus asperiores qui cumque. Repellendus odio ut et neque officiis ratione et. Expedita tenetur quod vel vitae perferendis iusto vero et.\",\n        \"vendorNumber\": \"451\",\n        \"type\": \"Construction\",\n        \"governmentId\": \"868\",\n        \"dunsNumber\": \"171\",\n        \"prequalified\": true,\n        \"preferredVendor\": false,\n        \"overview\": \"quo cupiditate quia\",\n        \"primaryOfficeId\": 50944314\n    }\n]"
                }
              ]
            },
            {
              "name": "4.2.4: Get Company Info",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/companies/:companyId",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "companies",
                    ":companyId"
                  ],
                  "variable": [
                    {
                      "key": "companyId",
                      "value": "{{kpc-seed-company}}"
                    }
                  ]
                },
                "description": "[Company - Get | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-Get)\n\nUsed to get information about an individual company by putting a specific companies `:companyId` in the request.\n\nThe response body contains the same fields as 4.2.1, except that the `primaryOffice` object is replaced by `primaryOfficeId`, which has just the ID of the company's primary office."
              },
              "response": [
                {
                  "name": "Get Specific Company",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/companies/:companyId",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "companies",
                        ":companyId"
                      ],
                      "variable": [
                        {
                          "key": "companyId",
                          "value": "49709785"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "382"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:12:27 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"id\": 49709785,\n    \"name\": \"BBuckleyCo\",\n    \"legalName\": \"\",\n    \"email\": \"\",\n    \"website\": \"\",\n    \"facebook\": \"\",\n    \"twitter\": \"\",\n    \"linkedIn\": \"\",\n    \"notes\": \"\",\n    \"vendorNumber\": \"\",\n    \"type\": \"\",\n    \"governmentId\": \"\",\n    \"dunsNumber\": \"\",\n    \"prequalified\": false,\n    \"preferredVendor\": false,\n    \"overview\": \"\",\n    \"customText1\": \"\",\n    \"customText2\": \"\",\n    \"customText3\": \"\",\n    \"customLookup1\": \"\",\n    \"customLookup2\": \"\",\n    \"customLookup3\": \"\",\n    \"primaryOfficeId\": 49709783\n}"
                }
              ]
            },
            {
              "name": "4.2.5: Update Company",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    // /!\\ Run 4.2.1 First\r\n    \"id\": {{kpc-4.2.1-id}},\r\n    \"email\": \"{{$randomEmail}}\",\r\n    \"name\": \"Updated {{$randomFirstName}}\",\r\n    \"legalName\": \"Updated Construction LLC\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/update",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "company",
                    "update"
                  ]
                },
                "description": "[Company - Update | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-Update)\n\nUpdate the companies info with new details.\n\nRequest Body:`Id` and `Name` are required fields. `Name` may be a new value to updated, or the current value if it should be unchanged. Reference attached Wiki article for other available attributes to be specified within request body."
              },
              "response": [
                {
                  "name": "Update Company",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\": 50944316,\r\n    \"email\": \"Polly.Hagenes83@gmail.com\",\r\n    \"name\": \"Updated Antonia\",\r\n    \"legalName\": \"Updated Construction LLC\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/update",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "company",
                        "update"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "135"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "63"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:12:41 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"id\": 50944316,\n    \"name\": \"Updated Antonia\",\n    \"legalName\": \"Updated Construction LLC\",\n    \"email\": \"Polly.Hagenes83@gmail.com\",\n    \"primaryOfficeId\": 0\n}"
                }
              ]
            }
          ],
          "description": "Endpoints related to companies:\n\n- To see companies on the Kahua app, click on the Contacts app and then click Companies from the dropdown\n    \n\nHere is a list of all attributes of a company (not all required and all forms of capitalization is accepted in request):\n\n- `\"id\"`\n    \n- `\"email\"`\n    \n- `\"name\"`\n    \n- `\"Legalname\"`\n    \n- `\"GovernmentId\"`\n    \n- `\"Overview\"`\n    \n- `\"Type\"`\n    \n- `\"dunsNumber\"`\n    \n- `\"prequalified\"`\n    \n- `\"preferredvendor\"`\n    \n- `\"website\"`\n    \n- `\"VendorNumber\"`\n    \n- `\"twitter\"`\n    \n- `\"facebook\"`\n    \n- `\"linkedin\"`\n    \n- `\"notes\"`\n    \n- `\"primaryoffice\"` or `\"office\"` (there can be only 1 primary office but multiple offices)\n    \n- `\"certification\"`\n    \n\n> _**NOTE**_: `\"primaryoffice\"`/`\"office\"` and `\"certification\"` attributes are both child entities that have their own attributes, which can be found at 4.3: Offices and 4.4: Certifications."
        },
        {
          "name": "4.3: Offices",
          "item": [
            {
              "name": "4.3.1: Add Office",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "if (pm.response.code == 200) {\r",
                      "    const id = pm.response.json().id;\r",
                      "    pm.collectionVariables.set(\"kpc-4.3.4-id\", id);\r",
                      "}"
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "Text/JSON",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"Id\": 0,\r\n    // /!\\ Run 4.2.1 first\r\n    \"CompanyId\": {{kpc-4.2.1-id}},\r\n    \"Name\": \"{{$randomStreetName}} Office\",\r\n    \"CountryCode\": \"{{$randomCountryCode}}\",\r\n    \"AddressLine1\": \"{{$randomStreetAddress}}\",\r\n    \"AddressLine2\": \"\",\r\n    \"City\": \"{{$randomCity}}\",\r\n    \"State\": \"Georgia\",\r\n    \"Locality\": \"{{$randomLocale}}\",\r\n    \"Region\": \"region\",\r\n    \"Province\": \"province\",\r\n    \"Town\": \"town\",\r\n    \"County\": \"{{$randomCountry}}\",\r\n    \"PostalCode\": \"{{$randomInt}}\",\r\n    \"Email\": \"{{$randomEmail}}\",\r\n    \"Phone\": \"{{$randomPhoneNumber}}\",\r\n    \"Alternate\": \"alternate\",\r\n    \"Fax\": \"fax\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/add",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "offices",
                    "add"
                  ]
                },
                "description": "[Office - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-Office-Add)\n\nAdd an office to a company. The body contains all the attributes that are used for an office. Note that `CompanyId` and `Name` are required and `Id` must be 0 if it's provided as it will be set automatically. The rest of the attributes are optional.\n\nOn success, response body will contain all fields specified within the request."
              },
              "response": [
                {
                  "name": "Add Office",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "Text/JSON",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"Id\": 0,\r\n    \"CompanyId\": 50944316,\r\n    \"Name\": \"Sanford Square Office\",\r\n    \"CountryCode\": \"SC\",\r\n    \"AddressLine1\": \"47819 Bode Manor\",\r\n    \"AddressLine2\": \"\",\r\n    \"City\": \"Port Nicholaus\",\r\n    \"State\": \"Georgia\",\r\n    \"Locality\": \"ka\",\r\n    \"Region\": \"region\",\r\n    \"Province\": \"province\",\r\n    \"Town\": \"town\",\r\n    \"County\": \"Jordan\",\r\n    \"PostalCode\": \"864\",\r\n    \"Email\": \"Albin6@yahoo.com\",\r\n    \"Phone\": \"300-314-7823\",\r\n    \"Alternate\": \"alternate\",\r\n    \"Fax\": \"fax\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/add",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "offices",
                        "add"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "373"
                    },
                    {
                      "key": "Content-Type",
                      "value": "text/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "141"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:13:39 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 50944401,\n    \"companyId\": 50944316,\n    \"name\": \"Sanford Square Office\",\n    \"countryCode\": \"SC\",\n    \"addressLine1\": \"47819 Bode Manor\",\n    \"addressLine2\": \"\",\n    \"city\": \"Port Nicholaus\",\n    \"state\": \"Georgia\",\n    \"locality\": \"ka\",\n    \"region\": \"region\",\n    \"province\": \"province\",\n    \"town\": \"town\",\n    \"county\": \"Jordan\",\n    \"postalCode\": \"864\",\n    \"email\": \"Albin6@yahoo.com\",\n    \"phone\": \"300-314-7823\",\n    \"alternate\": \"alternate\",\n    \"fax\": \"fax\"\n}"
                }
              ]
            },
            {
              "name": "4.3.2: Update Office",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "Text/JSON",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    // /!\\ Run 4.2.1 first\r\n    \"id\" : {{kpc-4.3.4-id}},\r\n    \"companyId\" : {{kpc-4.2.1-id}},\r\n    \"name\" : \"Updated Office\",\r\n    \"countryCode\" : \"{{$randomCountryCode}}\",\r\n    \"state\" : \"Tennessee\",\r\n    \"addressLine1\" : \"{{$randomStreetAddress}}\",\r\n    \"city\" : \"Canton\",\r\n    \"postalCode\" : \"{{$randomInt}}\",\r\n    \"phone\" : \"{{$randomPhoneNumber}}\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/update",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "offices",
                    "update"
                  ]
                },
                "description": "[Office - Update | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-Office-Update)\n\nUpdate the information for an office.\n\n`Id` and `Name` are required fields. `Name` may be a new value to updated, or the current value if it should be unchanged. Reference attached Wiki article for other available attributes to be specified within request body.\n\nOn success, response body will contain all updated fields specified within the request."
              },
              "response": [
                {
                  "name": "Update Office",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "Text/JSON",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\" : 50944401,\r\n    \"companyId\" : 50944316,\r\n    \"name\" : \"Updated Office\",\r\n    \"countryCode\" : \"NZ\",\r\n    \"state\" : \"Tennessee\",\r\n    \"addressLine1\" : \"066 Stoltenberg Fort\",\r\n    \"city\" : \"Canton\",\r\n    \"postalCode\" : \"488\",\r\n    \"phone\" : \"628-440-9137\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/update",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "offices",
                        "update"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "195"
                    },
                    {
                      "key": "Content-Type",
                      "value": "text/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "64"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:15:47 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 50944401,\n    \"companyId\": 50944316,\n    \"name\": \"Updated Office\",\n    \"countryCode\": \"NZ\",\n    \"addressLine1\": \"066 Stoltenberg Fort\",\n    \"city\": \"Canton\",\n    \"state\": \"Tennessee\",\n    \"postalCode\": \"488\",\n    \"phone\": \"628-440-9137\"\n}"
                }
              ]
            },
            {
              "name": "4.3.3: Remove Office",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "Text/JSON",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    // /!\\ Run 4.3.4 and 4.2.1 first\r\n    \"id\" : {{kpc-4.3.4-id}},\r\n    \"companyId\" : {{kpc-4.2.1-id}}\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/remove",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "offices",
                    "remove"
                  ]
                },
                "description": "[Office - Remove | Kahua Wikil](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-Office-Remove)\n\nRemove an office from a company. A `400 Bad Request` will be returned if the office `officeId` was the primary office of the company `companyId`."
              },
              "response": [
                {
                  "name": "Remove Primary Office",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "Text/JSON",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\" : 50944401,\r\n    \"companyId\" : 50944316\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/remove",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "offices",
                        "remove"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4"
                    },
                    {
                      "key": "Content-Type",
                      "value": "text/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "94"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:17:50 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "\"OK\""
                },
                {
                  "name": "(Fails) Attempted to Remove Primary Office",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "Text/JSON",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\" : 50944401,\r\n    \"companyId\" : 50944316\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/remove",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "offices",
                        "remove"
                      ]
                    }
                  },
                  "status": "Bad Request",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "71"
                    },
                    {
                      "key": "Content-Type",
                      "value": "text/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:17:00 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"errorCode\": \"Invalid_Data\",\n    \"message\": \"Cannot remove a primary office\"\n}"
                }
              ]
            },
            {
              "name": "4.3.4: Set Primary Office",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "Text/JSON",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    // /!\\ Run 4.3.4 and 4.2.1 first\r\n    \"id\" : {{kpc-4.3.4-id}},\r\n    \"companyId\" : {{kpc-4.2.1-id}}\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/setprimary",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "offices",
                    "setprimary"
                  ]
                },
                "description": "[Office - Set Primary | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/Company-Office-SetPrimary)\n\nAdd or update the primary office of the chosen company.\n\n- `id`: id of the office you want to set as the new primary office\n    \n- `companyId`: id of the company you are selecting a new primary office for"
              },
              "response": [
                {
                  "name": "Set Primary Office",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "Text/JSON",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\" : 50944401,\r\n    \"companyId\" : 50944401\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/offices/setprimary",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "offices",
                        "setprimary"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "36"
                    },
                    {
                      "key": "Content-Type",
                      "value": "text/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "94"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:15:00 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 50944401,\n    \"companyId\": 50944316\n}"
                }
              ]
            }
          ],
          "description": "Offices are child/nested entities of Companies. One office per company can be set to the \"Primary Office\". Here are the attributes associated with offices:\n\n- `\"id\"` (required)\n    \n- `\"companyid\"` (required)\n    \n- `\"name\"` (required)\n    \n- `\"countrycode\"`\n    \n- `\"state\"`\n    \n- `\"addressline1\"`\n    \n- `\"addressline2\"`\n    \n- `\"city\"`\n    \n- `\"postalcode\"`\n    \n- `\"phone\"`\n    \n- `\"alternate\"`\n    \n- `\"fax\"`\n    \n- `\"email\"`\n    \n- `\"notes\"`\n    \n\n> _**NOTE**_: Since Offices are a child entity of companies, you need to have a created a company in your Kahua project and provide that in the request as the \"companyid\""
        },
        {
          "name": "4.4: Certifications",
          "item": [
            {
              "name": "4.4.1: Add Company Certification",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      "pm.variables.set(\"future-date\", new Date(new Date().getTime() + 1e12).toISOString());"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "if (pm.response.code == 200) {\r",
                      "    const id = pm.response.json().id;\r",
                      "    pm.collectionVariables.set(\"kpc-4.4.1-id\", id);\r",
                      "}"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"id\": 0,\r\n    \"companyId\": {{kpc-4.2.1-id}},\r\n    \"issuingAgency\": \"{{$randomFirstName}} Agency\",\r\n    \"referenceNumber\": \"{{$randomInt}}\",\r\n    \"jurisdiction\": \"Jurisdiction\",\r\n    \"classification\": \"Class {{$randomInt}}\",\r\n    \"type\": \"Other\",\r\n    \"issuedDate\": \"{{$isoTimestamp}}\",\r\n    \"expirationDate\": \"{{future-date}}\",\r\n    \"url\": \"{{$randomUrl}}\",\r\n    \"isAllOffices\": true,\r\n    \"notes\": \"{{$randomLoremParagraph}}\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/addCertification",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "company",
                    "addCertification"
                  ]
                },
                "description": "[Company - Certification - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/CompanyCertificationAdd)\n\nAdds a certification to an existing company.\n\nThe only required field in the request body is `companyId` to specify which company the certification should be associated with. All other fields are optional but should be populated in order to correctly identify the certification (may be found in Wiki article)."
              },
              "response": [
                {
                  "name": "Add Certification",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\": 0,\r\n    \"companyId\": 50944316,\r\n    \"issuingAgency\": \"Eusebio Agency\",\r\n    \"referenceNumber\": \"200\",\r\n    \"jurisdiction\": \"Jurisdiction\",\r\n    \"classification\": \"Class 620\",\r\n    \"type\": \"Other\",\r\n    \"issuedDate\": \"2025-07-25T14:19:20.216\",\r\n    \"expirationDate\": \"2057-04-02T16:06:00.196\",\r\n    \"url\": \"https://lula.net\",\r\n    \"isAllOffices\": true,\r\n    \"notes\": \"Ut vero est perspiciatis. Ullam nihil veritatis et ea dolores incidunt exercitationem. Debitis explicabo sed voluptas sit.\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/addCertification",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "company",
                        "addCertification"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "427"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "78"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:19:20 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"id\": 50944424,\n    \"companyId\": 50944316,\n    \"issuingAgency\": \"Eusebio Agency\",\n    \"referenceNumber\": \"200\",\n    \"jurisdiction\": \"Jurisdiction\",\n    \"classification\": \"Class 620\",\n    \"type\": \"Other\",\n    \"issuedDate\": \"2025-07-25T14:19:20.216\",\n    \"expirationDate\": \"2057-04-02T16:06:00.196\",\n    \"url\": \"https://lula.net\",\n    \"isAllOffices\": true,\n    \"notes\": \"Ut vero est perspiciatis. Ullam nihil veritatis et ea dolores incidunt exercitationem. Debitis explicabo sed voluptas sit.\"\n}"
                }
              ]
            },
            {
              "name": "4.4.2: Update Company Certification",
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    // /!\\ Run 4.4.1 first\r\n    \"id\": {{kpc-4.4.1-id}},\r\n    \"issuingAgency\": \"Updated Agency\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/updateCertification",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "company",
                    "updateCertification"
                  ]
                },
                "description": "[Company - Certification - Update | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/CompanyCertificationUpdate)\n\nUpdates the certification of a company. `id` is required and specifies which certification should be updated. All other fields are optional and may be specified individually with respect to what should be updated (reference Wiki article)."
              },
              "response": [
                {
                  "name": "Update Certification",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\": 50944424,\r\n    \"issuingAgency\": \"Updated Agency\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/updateCertification",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "company",
                        "updateCertification"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "144"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:20:51 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"id\": 50944424,\n    \"companyId\": 0,\n    \"issuingAgency\": \"Updated Agency\",\n    \"issuedDate\": \"0001-01-01T00:00:00.000\",\n    \"expirationDate\": \"0001-01-01T00:00:00.000\"\n}"
                }
              ]
            },
            {
              "name": "4.4.3: Remove Company Certification",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    // /!\\ Run 4.4.1 first\r\n    \"id\": {{kpc-4.4.1-id}},\r\n    \"companyId\": {{kpc-4.2.1-id}}\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/removeCertification",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "contacts",
                    "company",
                    "removeCertification"
                  ]
                },
                "description": "[Company - Certification - Remove | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/CompanyCertificationRemove)\n\nRemove a certification with ID `id` from company with ID `companyId`."
              },
              "response": [
                {
                  "name": "Remove Certification",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"id\": 50944424,\r\n    \"companyId\": 50944316\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/contacts/company/removeCertification",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "contacts",
                        "company",
                        "removeCertification"
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "78"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:21:21 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "\"OK\""
                }
              ]
            }
          ],
          "description": "Certifications are child/nested entities of Companies. Here are the attributes associated with certifications:\n\n- `\"id\"`\n    \n- `\"companyid\"` (required)\n    \n- `\"issuingagency\"`\n    \n- `\"referencenumber\"`\n    \n- `\"jurisdiction\"`\n    \n- `\"classification\"`\n    \n- `\"type\"`\n    \n- `\"issueddate\"`\n    \n- `\"expirationdate\"`\n    \n- `\"url\"`\n    \n- `\"isalloffices\"`\n    \n- `\"notes\"`\n    \n\n> _**NOTE**_: Since Offices are a child entity of companies, you need to have a created a company in your Kahua project and provide that in the request as the \"companyid\""
        }
      ],
      "description": "Within the Contacts app in Kahua there are a few different entities that can be created, these being People, Companies, and Employee Profiles. There are also a couple of nested entites for Companies that can be created, which are Offices and Certifications. Endpoints that manage these entities can be found within this folder.\n\n> _**WARNING**_: The Contacts app is a domain-scoped app, so entities that are created/updated/deleted will persist outside of the project you created for this collection."
    },
    {
      "name": "5: Projects, Apps, and Entities",
      "item": [
        {
          "name": "5.1: Projects",
          "item": [
            {
              "name": "5.1.1: Get Project Info",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "pm.test(\"Status code is 200\", function () {\r",
                      "    pm.response.to.have.status(200);\r",
                      "});"
                    ],
                    "type": "text/javascript",
                    "packages": {}
                  }
                }
              ],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/info",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "info"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "Returns basic information about a project specified by `:projectId`.\n\nThe body of the response is an object with the following fields:\n\n- `canAdd`: Whether or not the current user has permission to create projects inside of this one\n    \n- `canCopy`: Whether or not the current user has permission to duplicate projects of this one\n    \n- `canCopyOrAddAtOrBelow`: Whether or not the current user has permission to create or duplicate projects inside of this one or its children\n    \n- `hasTemplates`: This is `true` if `canCopy` is `true` and if the `kahua_Project.Project` entity has an attribute named `RecordType`. This attribute does not exist by default and will need to be defined by an extension or supplement of `kahua_Project`\n    \n- `id`: The ID of the project (equal to the `Id` attribute)\n    \n- `partitionId`: The ID of the partition (either another project or the domain root) that the project belongs to (equal to the `PartitionId` attribute)\n    \n- `name`: The name of the project (equal to the `Name` attribute)\n    \n- `number`: The number of the project (equal to the `Number` attribute)\n    \n- `path`: The path to the project in the domain\n    \n- `isArchived`: Whether or not the project has been archived and is read-only (equal to the `IsArchived` attribute)\n    \n- `projectDirectoryEnforced`: This is `true` if the `Project Directory Administrator` group exists in the domain root and has at least one member\n    \n- `isOrganizationProject`: Whether or not this project is an orginization project\n    \n- `organizationParentId`: If `isOrganizationProject` is true, then this will be the ID of this projects' parent organiztion project\n    \n- `organizationParentPath`: If `isOrganizationProject` is true, then this is the path to the organization parent project in the domain (not present if `isOrganizationProject` is `false`)\n    \n- `hideMyProjectsLocationColumn`: Legacy, always `false`\n    \n- `hideMyProjectsStatusColumn`: Legacy, always `false`\n    \n- `showGettingStartedAction`: Legacy, always `false`\n    \n- `childCount`: Not populated by this request, always `0`"
              },
              "response": [
                {
                  "name": "Get Project",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/info",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "info"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "399"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:22:19 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"canAdd\": true,\n    \"canCopy\": true,\n    \"canCopyOrAddAtOrBelow\": true,\n    \"hasTemplates\": false,\n    \"hideMyProjectsLocationColumn\": false,\n    \"hideMyProjectsStatusColumn\": false,\n    \"id\": 50926912,\n    \"partitionId\": 0,\n    \"name\": \"Postman\",\n    \"number\": \"0003\",\n    \"path\": \"BBuckleyCo\\\\Postman\",\n    \"isArchived\": false,\n    \"showGettingStartedAction\": false,\n    \"projectDirectoryEnforced\": false,\n    \"childCount\": 0,\n    \"isOrganizationProject\": false,\n    \"organizationParentId\": 0\n}"
                }
              ]
            },
            {
              "name": "5.1.2: Child Project List",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/projects/children",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "projects",
                    "children"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "0"
                    }
                  ]
                },
                "description": "Returns a list of child projects for the project `:projectId`. This request only returns the top-level children of the specified project. To include children of children, use 5.1.3 instead.\n\nThe response body is a list of objects, each with the same content as 5.1.1.\n\nUse `0` as projectId to retrieve list of all top-level projects in the domain."
              },
              "response": [
                {
                  "name": "Get Child Projects",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/projects/children",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "projects",
                        "children"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "432"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:24:40 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"canAdd\": false,\n        \"canCopy\": false,\n        \"canCopyOrAddAtOrBelow\": false,\n        \"hasTemplates\": false,\n        \"hideMyProjectsLocationColumn\": false,\n        \"hideMyProjectsStatusColumn\": false,\n        \"id\": 50944435,\n        \"partitionId\": 50926912,\n        \"name\": \"Child Project\",\n        \"number\": \"0002\",\n        \"path\": \"BBuckleyCo\\\\Postman\\\\Child Project\",\n        \"isArchived\": false,\n        \"showGettingStartedAction\": false,\n        \"projectDirectoryEnforced\": false,\n        \"childCount\": 0,\n        \"isOrganizationProject\": false,\n        \"organizationParentId\": 0\n    }\n]"
                }
              ]
            },
            {
              "name": "5.1.3: (QRY) Get All Child Projects",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"PropertyName\": \"Query\",\n    \"EntityDef\": \"kahua_Project.Project\",\n    \"Partition\": {\n        // See 1.1.3\n        \"IncludeChildDomainPartitions\": true\n    }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "0"
                    }
                  ]
                },
                "description": "This query returns all child projects of a the project `:projectId`, including subprojects of the children."
              },
              "response": [
                {
                  "name": "Get Child Projects",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n    \"PropertyName\": \"Query\",\n    \"EntityDef\": \"kahua_Project.Project\",\n    \"Partition\": {\n        // See 1.1.3\n        \"IncludeChildDomainPartitions\": true\n    }\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4196"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:29:13 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50944444,\n            \"entityDef\": \"kahua_Project.Project\",\n            \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsArchived\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsPending\": false,\n            \"IsTaxable\": false,\n            \"CurrencyRateLastModifiedDateTime\": \"2025-07-25T14:24:27.197\",\n            \"CreatedDateTime\": \"2025-07-25T14:24:27.197\",\n            \"CurrencyRateToDocument\": 1,\n            \"CurrencyRateToDomain\": 1,\n            \"Instance\": 1,\n            \"CurrencyRateTypeId\": 2124,\n            \"CurrencyRateId\": 3466,\n            \"DomainPartitionId\": 50944435,\n            \"PartitionId\": 50944435,\n            \"Id\": 50944444,\n            \"InstanceId\": 50944444,\n            \"CurrencyCode\": \"USD\",\n            \"ProjectCurrency\": \"USD\",\n            \"PartitionItemState\": \"Live\",\n            \"PartitionItemType\": \"Project\",\n            \"Number\": \"0001\",\n            \"Name\": \"Child of Child Project\",\n            \"AppNameLabel\": \"Workflow Labels\",\n            \"DomainPartitionPath\": \"\\\\Postman\\\\Child Project\",\n            \"PartitionPath\": \"\\\\Postman\\\\Child Project\",\n            \"Path\": \"\\\\Postman\\\\Child Project\\\\Child of Child Project\",\n            \"DetailLabel\": \"Project: Child of Child Project\",\n            \"LongLabel\": \"Child of Child Project\",\n            \"ShortLabel\": \"Child of Child Project\",\n            \"Address\": {\n                \"id\": 50944445,\n                \"entityDef\": \"kahua_Address.Address\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50944435,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsArchived\": false,\n                \"IsCountedDisabled\": false,\n                \"IsManual\": false,\n                \"IsMarkup\": false,\n                \"IsPending\": false,\n                \"IsTaxable\": false,\n                \"MarkupEnabled\": false,\n                \"CurrencyRateLastModifiedDateTime\": \"2025-07-25T14:24:11.387\",\n                \"CreatedDateTime\": \"2025-07-25T14:24:11.387\",\n                \"CurrencyRateToDomain\": 1,\n                \"CurrencyRateToDocument\": 1,\n                \"Instance\": 1,\n                \"CurrencyRateTypeId\": 2124,\n                \"CurrencyRateId\": 3466,\n                \"PartitionId\": 50926912,\n                \"DomainPartitionId\": 50926912,\n                \"Id\": 50944435,\n                \"InstanceId\": 50944435,\n                \"ProjectCurrency\": \"USD\",\n                \"CurrencyCode\": \"USD\",\n                \"PartitionItemState\": \"Live\",\n                \"PartitionItemType\": \"Project\",\n                \"Number\": \"0002\",\n                \"Name\": \"Child Project\",\n                \"PartitionPath\": \"\\\\Postman\",\n                \"DomainPartitionPath\": \"\\\\Postman\",\n                \"AppNameLabel\": \"Workflow Labels\",\n                \"Path\": \"\\\\Postman\\\\Child Project\",\n                \"DetailLabel\": \"Project: Child Project\",\n                \"LongLabel\": \"Child Project\",\n                \"ShortLabel\": \"Child Project\",\n                \"CreatedBy\": {\n                    \"id\": 49711149,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                },\n                \"Partition\": {\n                    \"id\": 50926912,\n                    \"entityDef\": \"kahua_Project.Project\",\n                    \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                    \"outwardReferences\": []\n                },\n                \"DomainPartition\": {\n                    \"id\": 50926912,\n                    \"referenceType\": 1,\n                    \"hubPath\": null,\n                    \"outwardReferences\": []\n                },\n                \"Address\": {\n                    \"id\": 50944436,\n                    \"entityDef\": \"kahua_Address.Address\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            },\n            \"DomainPartition\": {\n                \"id\": 50944435,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50944435,\n            \"entityDef\": \"kahua_Project.Project\",\n            \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"IsArchived\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsPending\": false,\n            \"IsTaxable\": false,\n            \"MarkupEnabled\": false,\n            \"CurrencyRateLastModifiedDateTime\": \"2025-07-25T14:24:11.387\",\n            \"CreatedDateTime\": \"2025-07-25T14:24:11.387\",\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"Instance\": 1,\n            \"CurrencyRateTypeId\": 2124,\n            \"CurrencyRateId\": 3466,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50944435,\n            \"InstanceId\": 50944435,\n            \"ProjectCurrency\": \"USD\",\n            \"CurrencyCode\": \"USD\",\n            \"PartitionItemState\": \"Live\",\n            \"PartitionItemType\": \"Project\",\n            \"Number\": \"0002\",\n            \"Name\": \"Child Project\",\n            \"PartitionPath\": \"\\\\Postman\",\n            \"DomainPartitionPath\": \"\\\\Postman\",\n            \"AppNameLabel\": \"Workflow Labels\",\n            \"Path\": \"\\\\Postman\\\\Child Project\",\n            \"DetailLabel\": \"Project: Child Project\",\n            \"LongLabel\": \"Child Project\",\n            \"ShortLabel\": \"Child Project\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Address\": {\n                \"id\": 50944436,\n                \"entityDef\": \"kahua_Address.Address\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56355044\n}"
                }
              ]
            }
          ],
          "description": "This section details requests regarding projects."
        },
        {
          "name": "5.2: Apps",
          "item": [
            {
              "name": "5.2.1: Get App Lists",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/lists",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "lists"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_RFI"
                    }
                  ]
                },
                "description": "[AppLists - Get | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/AppListsGet)\n\nThis request returns a list of all app lists for the app `:appName` in the project `:projectId`. The response is an array of objects, each with the following fields:\n\n- `name`: The name of the app list as it appears in the app definition\n    \n- `id`: The ID of the app list\n    \n- `label`: The name of the app list as it appears in Kahua"
              },
              "response": [
                {
                  "name": "Get RFI App Lists",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "",
                        "value": "",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/lists",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "lists"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_RFI"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "130"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "16"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:27:19 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"name\": \"PreConstruction\",\n        \"id\": 50926915,\n        \"label\": \"Pre-Construction\"\n    },\n    {\n        \"name\": \"Construction\",\n        \"id\": 50926914,\n        \"label\": \"Construction\"\n    }\n]"
                }
              ]
            },
            {
              "name": "5.2.2: Get Merged App Definition",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/definition",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "definition"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_RFI"
                    }
                  ]
                },
                "description": "This request returns the XML App Definition for the app `:appName` in the project `:projectId`, including all changes introduced by extensions and supplements. However, changes to the app via configuration will not be included."
              },
              "response": [
                {
                  "name": "Get RFI App",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/definition",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "definition"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_RFI"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1112372"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "63"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:30:56 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "\"<App Name=\\\"kahua_AEC_RFI\\\" DataScope=\\\"Default\\\" AppScope=\\\"Partition\\\" Version=\\\"1927\\\" VersionLabel=\\\"1.0\\\" Description=\\\"[AppDescription]\\\" Label=\\\"[AppLabel]\\\" PermissionMode=\\\"RevokeByDefault\\\" IsConfigurable=\\\"true\\\" IsShareable=\\\"true\\\" CultureCode=\\\"en\\\" PlatformScript=\\\"kahua_AEC_RFI.App\\\">\\r\\n  <AppPublishing ProductType=\\\"App\\\" VisibilityType=\\\"Private\\\" PriceType=\\\"Unknown\\\" RenewalPeriod=\\\"12\\\">\\r\\n    <ProductInfo DeliveryType=\\\"InstallApp\\\">\\r\\n      <Delivery>\\r\\n        <Installs />\\r\\n        <Licenses />\\r\\n      </Delivery>\\r\\n      <Images />\\r\\n      <Points />\\r\\n      <Languages />\\r\\n      <Categories />\\r\\n      <Requirements />\\r\\n      <LifecycleStages />\\r\\n    </ProductInfo>\\r\\n    <Cultures AppHostType=\\\"Default\\\">\\r\\n      <Culture Code=\\\"en\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"es\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"es-ES\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"tr\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">Insaat Bilgi Isteme Yï¿½netimi</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"pt-BR\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"ja\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">情報提供依頼</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"fr\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFI</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"zh-CN\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">信息请求（RFIs）</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"ru-RU\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFI</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"pl-PL\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFI</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n      <Culture Code=\\\"de-DE\\\">\\r\\n        <Labels>\\r\\n          <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        </Labels>\\r\\n      </Culture>\\r\\n    </Cultures>\\r\\n  </AppPublishing>\\r\\n  <LicenseRequirements>\\r\\n    <AllLicenses>\\r\\n      <License Name=\\\"KahuaPlatform\\\">\\r\\n        <UnlicensedOperations>\\r\\n          <Operation Ref=\\\"OpenApp\\\" />\\r\\n          <Operation Ref=\\\"View\\\" />\\r\\n          <Operation Ref=\\\"Read\\\" />\\r\\n          <Operation Ref=\\\"Export\\\" />\\r\\n          <Operation Ref=\\\"Send\\\" />\\r\\n        </UnlicensedOperations>\\r\\n      </License>\\r\\n    </AllLicenses>\\r\\n  </LicenseRequirements>\\r\\n  <AppHostTypes>\\r\\n    <AppHostType>Kahua.Desktop</AppHostType>\\r\\n    <AppHostType>Kahua.Mobile</AppHostType>\\r\\n  </AppHostTypes>\\r\\n  <Groups>\\r\\n    <Group Ref=\\\"kahua_DomainAdministrator\\\">\\r\\n      <Apps>\\r\\n        <App Ref=\\\"kahua_AEC_RFI\\\" AppScope=\\\"Default\\\">\\r\\n          <Roles>\\r\\n            <Role Command=\\\"Grant\\\" Ref=\\\"Administrator\\\" Type=\\\"Application\\\">\\r\\n              <EntityActions />\\r\\n              <EntityActionLists />\\r\\n              <EntityViews />\\r\\n            </Role>\\r\\n          </Roles>\\r\\n        </App>\\r\\n      </Apps>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Group>\\r\\n    <Group Ref=\\\"kahua_DomainUser\\\">\\r\\n      <Apps>\\r\\n        <App Ref=\\\"kahua_AEC_RFI\\\" AppScope=\\\"Default\\\">\\r\\n          <Roles>\\r\\n            <Role Command=\\\"Grant\\\" Ref=\\\"Contributor\\\" Type=\\\"Application\\\">\\r\\n              <EntityActions />\\r\\n              <EntityActionLists />\\r\\n              <EntityViews />\\r\\n            </Role>\\r\\n          </Roles>\\r\\n        </App>\\r\\n      </Apps>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Group>\\r\\n  </Groups>\\r\\n  <Operations>\\r\\n    <Operation Name=\\\"Add\\\" Label=\\\"[AppOperationAddLabel]\\\" />\\r\\n    <Operation Name=\\\"Configure\\\" Label=\\\"[AppOperationConfigureLabel]\\\" />\\r\\n    <Operation Name=\\\"CreateList\\\" Label=\\\"[AppOperationCreateListLabel]\\\" />\\r\\n    <Operation Name=\\\"Edit\\\" Label=\\\"[AppOperationEditLabel]\\\" />\\r\\n    <Operation Name=\\\"Export\\\" Label=\\\"[AppOperationExportLabel]\\\" />\\r\\n    <Operation Name=\\\"Import\\\" Label=\\\"[AppOperationImportLabel]\\\" />\\r\\n    <Operation Name=\\\"OpenApp\\\" Description=\\\"[AppOperationOpenAppDescription]\\\" Label=\\\"[AppOperationOpenAppLabel]\\\" />\\r\\n    <Operation Name=\\\"Remove\\\" Label=\\\"[AppOperationRemoveLabel]\\\" />\\r\\n    <Operation Name=\\\"Share\\\" Description=\\\"[AppOperationShareDescription]\\\" Label=\\\"[AppOperationShareLabel]\\\" />\\r\\n    <Operation Name=\\\"View\\\" Label=\\\"[AppOperationViewLabel]\\\" />\\r\\n    <Operation Name=\\\"Send\\\" Label=\\\"[AppOperationSendLabel]\\\" />\\r\\n    <Operation Name=\\\"Process\\\" Label=\\\"[AppOperationProcessLabel]\\\" />\\r\\n    <Operation Name=\\\"EditViewTemplate\\\" Description=\\\"[AppOperationEditViewTemplateDescription]\\\" Label=\\\"[AppOperationEditViewTemplateLabel]\\\" />\\r\\n  </Operations>\\r\\n  <Roles>\\r\\n    <Role Name=\\\"Administrator\\\" Description=\\\"[AppRoleAdministratorDescription]\\\" Label=\\\"[AppRoleAdministratorLabel]\\\" Type=\\\"Application\\\">\\r\\n      <Operations>\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Add\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Configure\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"CreateList\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Edit\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Export\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Import\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"OpenApp\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Remove\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"View\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Send\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Share\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Process\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"EditViewTemplate\\\" />\\r\\n      </Operations>\\r\\n      <RoleDependencies>\\r\\n        <RoleDependency Ref=\\\"kahua_CompanyManager.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_AEC_CSICode.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_GroupManagement.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_Location.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_PeopleManager.Referencer\\\" />\\r\\n      </RoleDependencies>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Role>\\r\\n    <Role Name=\\\"Contributor\\\" Description=\\\"[AppRoleContributorDescription]\\\" Label=\\\"[AppRoleContributorLabel]\\\" Type=\\\"Application\\\">\\r\\n      <Operations>\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Add\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Edit\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"OpenApp\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"View\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Send\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Process\\\" />\\r\\n      </Operations>\\r\\n      <RoleDependencies>\\r\\n        <RoleDependency Ref=\\\"kahua_CompanyManager.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_AEC_CSICode.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_GroupManagement.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_Location.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_PeopleManager.Referencer\\\" />\\r\\n      </RoleDependencies>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Role>\\r\\n    <Role Name=\\\"Moderator\\\" Description=\\\"[AppRoleModeratorDescription]\\\" Label=\\\"[AppRoleModeratorLabel]\\\" Type=\\\"Application\\\">\\r\\n      <Operations>\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Add\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Edit\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Export\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Import\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Remove\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Send\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Share\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"OpenApp\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"View\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Process\\\" />\\r\\n      </Operations>\\r\\n      <RoleDependencies>\\r\\n        <RoleDependency Ref=\\\"kahua_CompanyManager.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_AEC_CSICode.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_GroupManagement.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_Location.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_PeopleManager.Referencer\\\" />\\r\\n      </RoleDependencies>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Role>\\r\\n    <Role Name=\\\"Observer\\\" Description=\\\"[AppRoleObserverDescription]\\\" Label=\\\"[AppRoleObserverLabel]\\\" Type=\\\"Application\\\">\\r\\n      <Operations>\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"OpenApp\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"View\\\" />\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"Send\\\" />\\r\\n      </Operations>\\r\\n      <RoleDependencies>\\r\\n        <RoleDependency Ref=\\\"kahua_CompanyManager.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_AEC_CSICode.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_GroupManagement.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_Location.Referencer\\\" />\\r\\n        <RoleDependency Ref=\\\"kahua_PeopleManager.Referencer\\\" />\\r\\n      </RoleDependencies>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Role>\\r\\n    <Role Name=\\\"Referencer\\\" Description=\\\"[AppRoleReferencerDescription]\\\" Label=\\\"[AppRoleReferencerLabel]\\\" Type=\\\"Application\\\">\\r\\n      <Operations>\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"View\\\" />\\r\\n      </Operations>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Role>\\r\\n    <Role Name=\\\"TemplateEditor\\\" Description=\\\"[AppRoleTemplateEditorDescription]\\\" Label=\\\"[AppRoleTemplateEditorLabel]\\\" Type=\\\"Application\\\">\\r\\n      <Operations>\\r\\n        <Operation Command=\\\"Grant\\\" Ref=\\\"EditViewTemplate\\\" />\\r\\n      </Operations>\\r\\n      <EntityActions />\\r\\n      <EntityActionLists />\\r\\n      <EntityViews />\\r\\n    </Role>\\r\\n    <Role Name=\\\"LimitedView\\\" Type=\\\"Application\\\" Label=\\\"[AppRoleLimitedViewLabel]\\\" Description=\\\"[AppRoleLimitedViewDescription]\\\">\\r\\n      <Operations>\\r\\n        <Operation AppName=\\\"kahua_AEC_RFI\\\" Name=\\\"OpenApp\\\" Label=\\\"[AppOperationOpenAppLabel]\\\" Description=\\\"[AppOperationOpenAppDescription]\\\" />\\r\\n        <Operation AppName=\\\"kahua_AEC_RFI\\\" Name=\\\"View\\\" Label=\\\"[AppOperationViewLabel]\\\" Description=\\\"[AppOperationViewDescription]\\\" />\\r\\n      </Operations>\\r\\n    </Role>\\r\\n    <Role Name=\\\"Admin_AccessLevel\\\" Type=\\\"Application\\\" Label=\\\"[AccessLevelAdminLabel]\\\" Description=\\\"[AccessLevelAdminLabel]\\\">\\r\\n      <Operations>\\r\\n        <Operation AppName=\\\"kahua_AEC_RFI\\\" Name=\\\"AdminAccessLevel\\\" Label=\\\"[AccessLevelAdminLabel]\\\" Description=\\\"[AccessLevelAdminLabel]\\\" />\\r\\n        <Operation AppName=\\\"kahua_AEC_RFI\\\" Name=\\\"StandardAccessLevel\\\" Label=\\\"[AccessLevelStandardLabel]\\\" Description=\\\"[AccessLevelStandardLabel]\\\" />\\r\\n      </Operations>\\r\\n    </Role>\\r\\n    <Role Name=\\\"Standard_AccessLevel\\\" Type=\\\"Application\\\" Label=\\\"[AccessLevelStandardLabel]\\\" Description=\\\"[AccessLevelStandardLabel]\\\">\\r\\n      <Operations>\\r\\n        <Operation AppName=\\\"kahua_AEC_RFI\\\" Name=\\\"StandardAccessLevel\\\" Label=\\\"[AccessLevelStandardLabel]\\\" Description=\\\"[AccessLevelStandardLabel]\\\" />\\r\\n      </Operations>\\r\\n    </Role>\\r\\n  </Roles>\\r\\n  <App.Features>\\r\\n    <Hub Def=\\\"NoWorkflow\\\" />\\r\\n    <Offline />\\r\\n    <Pinning />\\r\\n  </App.Features>\\r\\n  <App.HubDefs>\\r\\n    <HubDef Name=\\\"NoWorkflow\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" DefaultNewStep=\\\"Start\\\" Label=\\\"[NoneLabel]\\\" ImportExportConfiguration=\\\"kahua_AEC_RFI.RFIExportDefinition\\\" AppName=\\\"kahua_AEC_RFI\\\" SharePermission.AnyOf=\\\"kahua_AEC_RFI.Share\\\" CreateReportPermission.AnyOf=\\\"kahua_AEC_RFI.Configure\\\" SendPermission.AnyOf=\\\"kahua_AEC_RFI.Send\\\" EditPermission.AnyOf=\\\"kahua_AEC_RFI.Edit\\\" ViewPermission.AnyOf=\\\"kahua_AEC_RFI.View\\\" ProcessPermission.AnyOf=\\\"kahua_AEC_RFI.Process\\\" DeletePermission.AnyOf=\\\"kahua_AEC_RFI.Remove\\\" HistoryPermission.AnyOf=\\\"kahua_AEC_RFI.View\\\" ExportPermission.AnyOf=\\\"kahua_AEC_RFI.Export\\\" ImportPermission.AnyOf=\\\"kahua_AEC_RFI.Import\\\" LogActions.DeleteEnabled=\\\"True\\\" LogActions.EditEnabled=\\\"True\\\">\\r\\n      <HubDef.Move Enabled=\\\"True\\\" Permission.AnyOf=\\\"kahua_AEC_RFI.Edit\\\" />\\r\\n      <HubDef.Inflow>\\r\\n        <Inflow.EntityDefs>\\r\\n          <InflowEntityDef Name=\\\"kahua_AEC_RFI.RFI\\\" HubDefName=\\\"kahua_AEC_RFI.NoWorkflow\\\" StartStep=\\\"Start\\\" />\\r\\n        </Inflow.EntityDefs>\\r\\n      </HubDef.Inflow>\\r\\n      <HubDef.PortableViews>\\r\\n        <PortableView Name=\\\"RFIViewReport\\\" Report=\\\"RFIViewReport\\\" Label=\\\"RFIViewReport\\\" Usage=\\\"View,Send\\\" ReportFQN=\\\"kahua_AEC_RFI.RFIViewReport\\\" />\\r\\n      </HubDef.PortableViews>\\r\\n      <HubDef.ContentRegions>\\r\\n        <ContentRegion Name=\\\"MediaPanelPreviewContent\\\">\\r\\n          <Section Name=\\\"AnchorSectionDetails\\\" Label=\\\"[AnchorSectionDetailsLabel]\\\" LabelUpper=\\\"[AnchorSectionDetailsLabelCaps]\\\">\\r\\n            <TextBlock Name=\\\"Title\\\" Label=\\\"[FieldTitleLabel]\\\" Path=\\\"Title\\\" />\\r\\n            <TextBlock Name=\\\"Caption\\\" Label=\\\"[FieldCaptionLabel]\\\" Path=\\\"Caption\\\" />\\r\\n            <TextBlock Name=\\\"Description\\\" Label=\\\"[FieldDescriptionLabel]\\\" Path=\\\"Description\\\" />\\r\\n            <TextBlock Name=\\\"Location\\\" Label=\\\"[FieldLocationLabel]\\\" Path=\\\"Location\\\" />\\r\\n            <TextBlock Name=\\\"SourceContact\\\" Label=\\\"[FieldSourceLabel]\\\" Path=\\\"SourceContact\\\" />\\r\\n            <TextBlock Name=\\\"Category\\\" Label=\\\"[FieldCategoryLabel]\\\" Path=\\\"Category\\\" />\\r\\n            <TextBlock Name=\\\"Status\\\" Label=\\\"[FieldStatusLabel]\\\" Path=\\\"Status\\\" />\\r\\n            <TextBlock Name=\\\"IncludePrint\\\" Label=\\\"[FieldIncludePrintLabel]\\\" Path=\\\"IncludePrint\\\" />\\r\\n          </Section>\\r\\n          <Section Name=\\\"AnchorSectionMedia\\\" Label=\\\"[AnchorSectionMediaLabel]\\\" LabelUpper=\\\"[AnchorSectionMediaLabelCapitalized]\\\">\\r\\n            <Section.VisibleWhen>\\r\\n              <AnyOf>\\r\\n                <Data Type=\\\"EqualTo\\\" Path=\\\"Type\\\" Value=\\\"Image\\\" />\\r\\n              </AnyOf>\\r\\n            </Section.VisibleWhen>\\r\\n            <TextBlock Name=\\\"Contributor\\\" Label=\\\"Contributor\\\" Path=\\\"File.CurrentFile.Contributor\\\" />\\r\\n            <TextBlock Name=\\\"Uploaded\\\" Label=\\\"Uploaded\\\" Path=\\\"File.CurrentFile.CreatedDateTime\\\" />\\r\\n            <Item Path=\\\"Image\\\">\\r\\n              <TextBlock Name=\\\"Photographer\\\" Label=\\\"[FieldPhotographerLabel]\\\" Path=\\\"Photographer\\\" />\\r\\n              <TextBlock Name=\\\"GpsAltitude\\\" Label=\\\"[FieldGpsAltitudeLabel]\\\" Path=\\\"GpsAltitude\\\" />\\r\\n              <TextBlock Name=\\\"GpsLatitude\\\" Label=\\\"[FieldGpsLatitudeLabel]\\\" Path=\\\"GpsLatitude\\\" />\\r\\n              <TextBlock Name=\\\"GpsLongitude\\\" Label=\\\"[FieldGpsLongitudeLabel]\\\" Path=\\\"GpsLongitude\\\" />\\r\\n              <TextBlock Name=\\\"Rotation\\\" Label=\\\"[FieldRotationLabel]\\\" Path=\\\"Rotation\\\" />\\r\\n              <TextBlock Name=\\\"CompassHeading\\\" Label=\\\"[FieldCompassHeadingLabel]\\\" Path=\\\"CompassHeading\\\" />\\r\\n            </Item>\\r\\n          </Section>\\r\\n          <Section Name=\\\"AnchorSectionComments\\\" Label=\\\"[AnchorSectionCommentsLabel]\\\" LabelUpper=\\\"[AnchorSectionCommentsLabelCapitalized]\\\">\\r\\n            <Comments Name=\\\"Comments\\\" IsReadOnly=\\\"True\\\" Path=\\\"Comments\\\" />\\r\\n          </Section>\\r\\n        </ContentRegion>\\r\\n        <ContentRegion Name=\\\"MediaPanelEditContent\\\">\\r\\n          <Section Name=\\\"AnchorSectionDetails\\\" Label=\\\"[AnchorSectionDetailsLabel]\\\" LabelUpper=\\\"[AnchorSectionDetailsLabelCaps]\\\">\\r\\n            <TextBox Name=\\\"Title\\\" Label=\\\"[FieldTitleLabel]\\\" Path=\\\"Title\\\" Lines=\\\"1\\\" />\\r\\n            <TextBox Name=\\\"Caption\\\" Label=\\\"[FieldCaptionLabel]\\\" Path=\\\"Caption\\\" Lines=\\\"10\\\" />\\r\\n            <TextBox Name=\\\"Description\\\" Label=\\\"[FieldDescriptionLabel]\\\" Path=\\\"Description\\\" Lines=\\\"3\\\" />\\r\\n            <TagBox Name=\\\"Location\\\" Label=\\\"[FieldLocationLabel]\\\" Path=\\\"Location\\\" Query=\\\"Locations\\\" />\\r\\n            <ContactSelect Name=\\\"SourceContact\\\" Path=\\\"SourceContact\\\" Label=\\\"[FieldSourceLabel]\\\" />\\r\\n            <Lookup Name=\\\"Category\\\" Label=\\\"[FieldCategoryLabel]\\\" Path=\\\"Category\\\" List=\\\"kahua_Media.MediaCategoryLookup\\\" />\\r\\n            <Lookup Name=\\\"Status\\\" Label=\\\"[FieldStatusLabel]\\\" Path=\\\"Status\\\" List=\\\"kahua_Media.MediaStatusLookup\\\" />\\r\\n            <CheckBox Name=\\\"IncludePrint\\\" Path=\\\"IncludePrint\\\" Label=\\\"[FieldIncludePrintLabel]\\\" />\\r\\n          </Section>\\r\\n          <Section Name=\\\"AnchorSectionMedia\\\" Label=\\\"[AnchorSectionMediaLabel]\\\" LabelUpper=\\\"[AnchorSectionMediaLabelCapitalized]\\\">\\r\\n            <Section.VisibleWhen>\\r\\n              <AnyOf>\\r\\n                <Data Type=\\\"EqualTo\\\" Path=\\\"Type\\\" Value=\\\"Image\\\" />\\r\\n              </AnyOf>\\r\\n            </Section.VisibleWhen>\\r\\n            <TextBlock Name=\\\"Contributor\\\" Label=\\\"Contributor\\\" Path=\\\"File.CurrentFile.Contributor\\\" />\\r\\n            <TextBlock Name=\\\"Uploaded\\\" Label=\\\"Uploaded\\\" Path=\\\"File.CurrentFile.CreatedDateTime\\\" />\\r\\n            <Item Path=\\\"Image\\\">\\r\\n              <TextBox Name=\\\"Photographer\\\" Label=\\\"[FieldPhotographerLabel]\\\" Path=\\\"Photographer\\\" Lines=\\\"1\\\" />\\r\\n              <Number Name=\\\"GpsAltitude\\\" Label=\\\"[FieldGpsAltitudeLabel]\\\" Path=\\\"GpsAltitude\\\" />\\r\\n              <Number Name=\\\"GpsLatitude\\\" Label=\\\"[FieldGpsLatitudeLabel]\\\" Path=\\\"GpsLatitude\\\" />\\r\\n              <Number Name=\\\"GpsLongitude\\\" Label=\\\"[FieldGpsLongitudeLabel]\\\" Path=\\\"GpsLongitude\\\" />\\r\\n              <Number Name=\\\"Rotation\\\" Label=\\\"[FieldRotationLabel]\\\" Path=\\\"Rotation\\\" />\\r\\n              <TextBox Name=\\\"CompassHeading\\\" Label=\\\"[FieldCompassHeadingLabel]\\\" Path=\\\"CompassHeading\\\" Lines=\\\"1\\\" />\\r\\n            </Item>\\r\\n          </Section>\\r\\n          <Section Name=\\\"AnchorSectionComments\\\" Label=\\\"[AnchorSectionCommentsLabel]\\\" LabelUpper=\\\"[AnchorSectionCommentsLabelCapitalized]\\\">\\r\\n            <Comments Name=\\\"Comments\\\" Path=\\\"Comments\\\" />\\r\\n          </Section>\\r\\n        </ContentRegion>\\r\\n      </HubDef.ContentRegions>\\r\\n      <HubDef.Starts>\\r\\n        <Start Label=\\\"[ActionNewLabel]\\\" Step=\\\"Start\\\" Permission.AnyOf=\\\"kahua_AEC_RFI.Add\\\" />\\r\\n      </HubDef.Starts>\\r\\n      <HubDef.LogDef FieldOptions.TitleField=\\\"[Number][Subject]\\\" FieldOptions.DescriptionField=\\\"Status\\\" FieldOptions.FirstField=\\\"Author\\\" FieldOptions.EnableFirstFieldLabel=\\\"True\\\" FieldOptions.SecondField=\\\"Date\\\" FieldOptions.ThirdField=\\\"OfficialResponder\\\" FieldOptions.EnableThirdFieldLabel=\\\"True\\\" FieldOptions.FourthField=\\\"DueDate\\\" FieldOptions.EnableFourthFieldLabel=\\\"True\\\" FieldOptions.EnableSecondFieldLabel=\\\"True\\\">\\r\\n        <LogDef.FieldDefs>\\r\\n          <FieldDef Name=\\\"Number\\\" Path=\\\"Number\\\" DataTag=\\\"FieldNumberLabel\\\" Edit.Path=\\\"Number\\\" />\\r\\n          <FieldDef Name=\\\"Subject\\\" Path=\\\"Subject\\\" DataTag=\\\"FieldSubjectLabel\\\" Edit.Path=\\\"Subject\\\" />\\r\\n          <FieldDef Name=\\\"Date\\\" Path=\\\"Date\\\" DataTag=\\\"FieldDateLabel\\\" Edit.Path=\\\"Date\\\" />\\r\\n          <FieldDef Name=\\\"Status\\\" Path=\\\"Status\\\" DataTag=\\\"FieldStatusLabel\\\" Edit.Path=\\\"Status\\\" />\\r\\n          <FieldDef Name=\\\"OfficialResponder\\\" Path=\\\"OfficialResponder\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" Edit.Path=\\\"OfficialResponder\\\" />\\r\\n          <FieldDef Name=\\\"DueDate\\\" Path=\\\"DueDate\\\" DataTag=\\\"FieldDueDateLabel\\\" Edit.Path=\\\"DueDate\\\" />\\r\\n          <FieldDef Name=\\\"DateSent\\\" Path=\\\"DateSent\\\" DataTag=\\\"FieldDateSentLabel\\\" Edit.Path=\\\"DateSent\\\" />\\r\\n          <FieldDef Name=\\\"DateResponded\\\" Path=\\\"DateResponded\\\" DataTag=\\\"FieldDateRespondedLabel\\\" Edit.Path=\\\"DateResponded\\\" />\\r\\n          <FieldDef Name=\\\"References\\\" Path=\\\"OutwardReferences\\\" DataTag=\\\"AnchorSectionReferencesLabel\\\" Edit.Path=\\\"OutwardReferences\\\" />\\r\\n          <FieldDef Name=\\\"CreatedBy\\\" Path=\\\"CreatedBy\\\" Label=\\\"[AttributeCreatedByLabel]\\\" />\\r\\n          <FieldDef Name=\\\"Author\\\" Path=\\\"Author\\\" DataTag=\\\"FieldAuthorLabel\\\" Edit.Path=\\\"Author\\\" />\\r\\n          <FieldDef Name=\\\"CSICode\\\" Path=\\\"CSICode\\\" DataTag=\\\"FieldCSICodeLabel\\\" Edit.Path=\\\"CSICode\\\" />\\r\\n          <FieldDef Name=\\\"Location\\\" Path=\\\"Location\\\" DataTag=\\\"FieldLocationLabel\\\" Edit.Path=\\\"Location\\\" />\\r\\n          <FieldDef Name=\\\"CostEffect\\\" Path=\\\"CostEffect\\\" DataTag=\\\"FieldCostEffectLabel\\\" Edit.Path=\\\"CostEffect\\\" />\\r\\n          <FieldDef Name=\\\"CostAmount\\\" Path=\\\"CostAmount\\\" DataTag=\\\"FieldCostAmountLabel\\\" Edit.Path=\\\"CostAmount\\\" />\\r\\n          <FieldDef Name=\\\"Reason\\\" Path=\\\"Reason\\\" DataTag=\\\"FieldReasonLabel\\\" Edit.Path=\\\"Reason\\\" />\\r\\n          <FieldDef Name=\\\"TimeEffect\\\" Path=\\\"TimeEffect\\\" DataTag=\\\"FieldTimeEffectLabel\\\" Edit.Path=\\\"TimeEffect\\\" />\\r\\n          <FieldDef Name=\\\"NumberOfDays\\\" Path=\\\"NumberOfDays\\\" DataTag=\\\"FieldNumberOfDaysLabel\\\" Edit.Path=\\\"NumberOfDays\\\" />\\r\\n          <FieldDef Name=\\\"Reference\\\" Path=\\\"Reference\\\" DataTag=\\\"FieldReferenceLabel\\\" Edit.Path=\\\"Reference\\\" />\\r\\n          <FieldDef Name=\\\"Question\\\" Path=\\\"Question\\\" DataTag=\\\"FieldQuestionLabel\\\" Edit.Path=\\\"Question\\\" />\\r\\n          <FieldDef Name=\\\"ProposedSolution\\\" Path=\\\"ProposedSolution\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" Edit.Path=\\\"ProposedSolution\\\" />\\r\\n          <FieldDef Name=\\\"DaysOutstanding\\\" Path=\\\"DaysOutstanding\\\" DataTag=\\\"FieldDaysOutstandingLabel\\\" />\\r\\n          <FieldDef Name=\\\"Responders\\\" Path=\\\"Responders\\\" DataTag=\\\"FieldRespondersLabel\\\" Edit.Path=\\\"Responders\\\" />\\r\\n          <FieldDef Name=\\\"Response\\\" Path=\\\"Response\\\" DataTag=\\\"FieldResponseLabel\\\" Edit.Path=\\\"Response\\\" />\\r\\n          <FieldDef Name=\\\"DestinationDocuments\\\" Path=\\\"ProcessedTargets\\\" FieldType=\\\"DocumentLink\\\" DataTag=\\\"DestinationDocumentsLabel\\\" />\\r\\n          <FieldDef Name=\\\"InitiatingDocuments\\\" Path=\\\"ProcessedSource\\\" FieldType=\\\"DocumentLink\\\" DataTag=\\\"InitiatingDocumentsLabel\\\" />\\r\\n          <FieldDef Name=\\\"Discipline\\\" Path=\\\"Discipline\\\" DataTag=\\\"FieldDisciplineLabel\\\" Edit.Path=\\\"Discipline\\\" />\\r\\n          <FieldDef Name=\\\"WorkSuspended\\\" DataTag=\\\"RFI_WorkSuspended\\\" Path=\\\"WorkSuspended\\\" Edit.Path=\\\"RFI_WorkSuspended\\\" />\\r\\n          <FieldDef Name=\\\"Created\\\" Path=\\\"CreatedDateTime\\\" Label=\\\"[AttributeCreatedDateTimeLabel]\\\" />\\r\\n          <FieldDef Name=\\\"LastModified\\\" Label=\\\"[FieldModifiedLabel]\\\" Path=\\\"ModifiedDateTime\\\" />\\r\\n          <FieldDef Name=\\\"AccessLevel\\\" FieldType=\\\"AccessLevel\\\" />\\r\\n          <FieldDef Name=\\\"Type\\\" DataTag=\\\"RFI_Type\\\" Label=\\\"[RFI_TypeLabel]\\\" Path=\\\"Type\\\" />\\r\\n          <FieldDef Name=\\\"RFIReferenceNumber1\\\" DataTag=\\\"RFI_RFIReferenceNumber1\\\" Label=\\\"[RFI_RFIReferenceNumber1Label]\\\" Path=\\\"RFIReferenceNumber1\\\" Edit.Path=\\\"RFIReferenceNumber1\\\" />\\r\\n          <FieldDef Name=\\\"RFIReferenceNumber2\\\" DataTag=\\\"RFI_RFIReferenceNumber2\\\" Label=\\\"[RFI_RFIReferenceNumber2Label]\\\" Path=\\\"RFIReferenceNumber2\\\" Edit.Path=\\\"RFIReferenceNumber2\\\" />\\r\\n          <FieldDef Name=\\\"UniversalLookup1\\\" DataTag=\\\"FieldUniversalLookup1Label\\\" Path=\\\"UniversalLookup1\\\" Edit.Path=\\\"UniversalLookup1\\\" />\\r\\n          <FieldDef Name=\\\"UniversalLookup2\\\" DataTag=\\\"FieldUniversalLookup2Label\\\" Path=\\\"UniversalLookup2\\\" Edit.Path=\\\"UniversalLookup2\\\" />\\r\\n          <FieldDef Name=\\\"UniversalLookup3\\\" DataTag=\\\"FieldUniversalLookup3Label\\\" Path=\\\"UniversalLookup3\\\" Edit.Path=\\\"UniversalLookup3\\\" />\\r\\n          <FieldDef Name=\\\"UniversalLookup4\\\" DataTag=\\\"FieldUniversalLookup4Label\\\" Path=\\\"UniversalLookup4\\\" Edit.Path=\\\"UniversalLookup4\\\" />\\r\\n          <FieldDef Name=\\\"UniversalLookup5\\\" DataTag=\\\"FieldUniversalLookup5Label\\\" Path=\\\"UniversalLookup5\\\" Edit.Path=\\\"UniversalLookup5\\\" />\\r\\n        </LogDef.FieldDefs>\\r\\n        <LogDef.FilterGroups>\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldAuthorLabel\\\" Path=\\\"Author\\\" />\\r\\n          <PathValuesFilterGroup Label=\\\"[AttributeCreatedByLabel]\\\" Path=\\\"CreatedBy\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldCSICodeLabel\\\" Path=\\\"CSICode\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldCostEffectLabel\\\" Path=\\\"CostEffect\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldDisciplineLabel\\\" Path=\\\"Discipline\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldLocationLabel\\\" Path=\\\"Location\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldOfficialResponderLabel\\\" Path=\\\"OfficialResponder\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldReasonLabel\\\" Path=\\\"Reason\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldStatusLabel\\\" Path=\\\"Status\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"FieldTimeEffectLabel\\\" Path=\\\"TimeEffect\\\" />\\r\\n          <PathValuesFilterGroup DataTag=\\\"RFI_Type\\\" Path=\\\"Type\\\" />\\r\\n        </LogDef.FilterGroups>\\r\\n      </HubDef.LogDef>\\r\\n      <HubDef.Logs>\\r\\n        <Log Label=\\\"[DataViewAllLabel]\\\" ShowPrinting=\\\"True\\\" ShowCharting=\\\"False\\\" ShowSearch=\\\"True\\\" ShowSettingsConfig=\\\"True\\\">\\r\\n          <Log.Fields>\\r\\n            <Field FieldDef=\\\"Number\\\" />\\r\\n            <Field FieldDef=\\\"Subject\\\" />\\r\\n            <Field FieldDef=\\\"Status\\\" />\\r\\n            <Field FieldDef=\\\"OfficialResponder\\\" />\\r\\n            <Field FieldDef=\\\"DueDate\\\" />\\r\\n            <Field FieldDef=\\\"DateResponded\\\" />\\r\\n            <Field FieldDef=\\\"References\\\" />\\r\\n            <Field FieldDef=\\\"Author\\\" />\\r\\n          </Log.Fields>\\r\\n        </Log>\\r\\n        <Log ShowSearch=\\\"True\\\" ShowSettingsConfig=\\\"True\\\" ShowPrinting=\\\"True\\\" Label=\\\"[DataViewDueOverdueLabel]\\\" ShowCharting=\\\"False\\\">\\r\\n          <Log.Fields>\\r\\n            <Field FieldDef=\\\"Number\\\" />\\r\\n            <Field FieldDef=\\\"Subject\\\" />\\r\\n            <Field FieldDef=\\\"Status\\\" />\\r\\n            <Field FieldDef=\\\"OfficialResponder\\\" />\\r\\n            <Field FieldDef=\\\"DueDate\\\" />\\r\\n            <Field FieldDef=\\\"DateResponded\\\" />\\r\\n            <Field FieldDef=\\\"References\\\" />\\r\\n          </Log.Fields>\\r\\n          <Log.Sorts>\\r\\n            <Sort Path=\\\"DueDate\\\" Direction=\\\"Descending\\\" />\\r\\n          </Log.Sorts>\\r\\n          <Log.Condition>\\r\\n            <AllOf>\\r\\n              <Data Type=\\\"LessThan\\\" Path=\\\"DueDate\\\" Current.Date=\\\"True\\\" DateOffset.Days=\\\"1\\\" />\\r\\n              <Data Type=\\\"HasNoValue\\\" Path=\\\"DateResponded\\\" />\\r\\n            </AllOf>\\r\\n          </Log.Condition>\\r\\n        </Log>\\r\\n      </HubDef.Logs>\\r\\n      <HubDef.Sharing>\\r\\n        <Sharing.Filters>\\r\\n          <Filter Name=\\\"NamedOnRecordFilter\\\" Label=\\\"[PermissionFilterNamedOnRecord]\\\">\\r\\n            <Filter.Condition>\\r\\n              <AnyOf>\\r\\n                <Link Path=\\\"CreatedBy.Company\\\" ToEntityRange=\\\"{company:currentid}\\\" />\\r\\n                <Link Path=\\\"OfficialResponder.Company\\\" ToEntityRange=\\\"{company:currentid}\\\" />\\r\\n                <Link Path=\\\"Author.Company\\\" ToEntityRange=\\\"{company:currentid}\\\" />\\r\\n                <Link Path=\\\"Responders.Company\\\" ToEntityRange=\\\"{company:currentid}\\\" />\\r\\n              </AnyOf>\\r\\n            </Filter.Condition>\\r\\n          </Filter>\\r\\n          <SharingFilter Name=\\\"CreatorFilter\\\" Label=\\\"[PermissionFilterCreatedByUserCompanyLabel]\\\">\\r\\n            <SharingFilter.Condition>\\r\\n              <Link Path=\\\"CreatedBy.Company\\\" ToEntityRange=\\\"{company:currentid}\\\" />\\r\\n            </SharingFilter.Condition>\\r\\n          </SharingFilter>\\r\\n          <SharingFilter Name=\\\"CreatedByUserFilter\\\" Label=\\\"[PermissionFilterCreatedByCurrentUserLabel]\\\">\\r\\n            <SharingFilter.Condition>\\r\\n              <Link Path=\\\"CreatedBy\\\" ToEntityRange=\\\"{contact:currentid}\\\" />\\r\\n            </SharingFilter.Condition>\\r\\n          </SharingFilter>\\r\\n        </Sharing.Filters>\\r\\n      </HubDef.Sharing>\\r\\n      <HubDef.Queries>\\r\\n        <Query Name=\\\"Contacts\\\" EntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" Partition.Scope=\\\"Domain\\\">\\r\\n          <Query.Condition>\\r\\n            <Data Path=\\\"ShortLabel\\\" Type=\\\"Contains\\\" Value=\\\"{Search.Text}\\\" />\\r\\n          </Query.Condition>\\r\\n        </Query>\\r\\n        <Query Name=\\\"CSICodes\\\" EntityDef=\\\"kahua_AEC_CSICode.CSICode\\\" Partition.Scope=\\\"DomainPartition\\\">\\r\\n          <Query.Condition>\\r\\n            <Data Path=\\\"ShortLabel\\\" Type=\\\"Contains\\\" Value=\\\"{Search.Text}\\\" />\\r\\n          </Query.Condition>\\r\\n        </Query>\\r\\n        <Query Name=\\\"Locations\\\" EntityDef=\\\"kahua_Location.Location\\\" Partition.Scope=\\\"DomainPartition\\\">\\r\\n          <Query.Condition>\\r\\n            <Data Path=\\\"ShortLabel\\\" Type=\\\"Contains\\\" Value=\\\"{Search.Text}\\\" />\\r\\n          </Query.Condition>\\r\\n        </Query>\\r\\n      </HubDef.Queries>\\r\\n      <HubDef.Steps>\\r\\n        <Step Name=\\\"Start\\\" Label=\\\"[StartStepLabel]\\\">\\r\\n          <Step.Save Disabled=\\\"False\\\" Actors=\\\"Everyone\\\">\\r\\n            <Save.Directives>\\r\\n              <Event Name=\\\"SetReviewStartDate\\\" Direction=\\\"Up\\\" />\\r\\n              <Event Name=\\\"SetReviewEndDate\\\" Direction=\\\"Up\\\" />\\r\\n            </Save.Directives>\\r\\n          </Step.Save>\\r\\n          <Step.Views>\\r\\n            <View Actors=\\\"Everyone\\\" ViewDef=\\\"EditView\\\" Id=\\\"466\\\" />\\r\\n            <View Actors=\\\"Everyone\\\" ViewDef=\\\"EditView\\\" Action=\\\"Edit\\\" Id=\\\"467\\\" />\\r\\n            <View Actors=\\\"Everyone\\\" ViewDef=\\\"PreviewView\\\" Action=\\\"Preview\\\" Id=\\\"468\\\" />\\r\\n          </Step.Views>\\r\\n          <Flow_Properties />\\r\\n        </Step>\\r\\n      </HubDef.Steps>\\r\\n      <HubDef.ViewDefs>\\r\\n        <ViewDef Name=\\\"EditView\\\" Title=\\\"[ViewRFIEditViewLabel]\\\" Permission.AnyOf=\\\"kahua_AEC_RFI.Edit,kahua_AEC_RFI.Add\\\">\\r\\n          <ViewDef.Tagging>\\r\\n            <Tagging Kind=\\\"Location\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n            <Tagging Kind=\\\"AssetType\\\" />\\r\\n            <Tagging Kind=\\\"Asset\\\" MatchLocation=\\\"True\\\" />\\r\\n          </ViewDef.Tagging>\\r\\n          <Section Label=\\\"[AnchorSectionDetailsLabel]\\\" LabelUpper=\\\"[AnchorSectionDetailsLabelCapitalized]\\\">\\r\\n            <AutoNumber DataTag=\\\"FieldNumberLabel\\\" Path=\\\"Number\\\" />\\r\\n            <TextBox DataTag=\\\"RFI_RFIReferenceNumber1\\\" Path=\\\"RFIReferenceNumber1\\\" />\\r\\n            <TextBox DataTag=\\\"RFI_RFIReferenceNumber2\\\" Path=\\\"RFIReferenceNumber2\\\" />\\r\\n            <Date DataTag=\\\"FieldDateLabel\\\" Path=\\\"Date\\\" />\\r\\n            <TextBox DataTag=\\\"FieldSubjectLabel\\\" Path=\\\"Subject\\\" />\\r\\n            <Lookup DataTag=\\\"FieldReasonLabel\\\" Path=\\\"Reason\\\" List=\\\"kahua_AEC_RFI.RFIReason\\\" />\\r\\n            <Lookup DataTag=\\\"FieldStatusLabel\\\" Path=\\\"Status\\\" List=\\\"kahua_AEC_RFI.RFIStatus\\\" />\\r\\n            <TagBox DataTag=\\\"FieldAuthorLabel\\\" Path=\\\"Author\\\" Query=\\\"Contacts\\\" SelectionMode=\\\"Single\\\" />\\r\\n            <Lookup DataTag=\\\"RFI_Type\\\" Label=\\\"[RFI_TypeLabel]\\\" Name=\\\"Type\\\" List=\\\"kahua_AEC_RFI.RFIType\\\" Path=\\\"Type\\\" />\\r\\n            <Lookup DataTag=\\\"FieldDisciplineLabel\\\" Path=\\\"Discipline\\\" List=\\\"kahua_AEC_RFI.RFIDiscipline\\\" />\\r\\n            <TagBox DataTag=\\\"FieldCSICodeLabel\\\" Path=\\\"CSICode\\\" Query=\\\"CSICodes\\\" SelectionMode=\\\"Multiple\\\" />\\r\\n            <TagBox DataTag=\\\"FieldLocationLabel\\\" Path=\\\"Location\\\" Query=\\\"Locations\\\" SelectionMode=\\\"Multiple\\\" />\\r\\n            <CheckBox Name=\\\"WorkSuspended\\\" DataTag=\\\"RFI_WorkSuspended\\\" Path=\\\"WorkSuspended\\\" />\\r\\n            <Lookup DataTag=\\\"FieldCostEffectLabel\\\" Path=\\\"CostEffect\\\" List=\\\"kahua_AEC_RFI.RFICostEffect\\\" />\\r\\n            <Currency DataTag=\\\"FieldCostAmountLabel\\\" Path=\\\"CostAmount\\\" />\\r\\n            <Lookup DataTag=\\\"FieldTimeEffectLabel\\\" Path=\\\"TimeEffect\\\" List=\\\"kahua_AEC_RFI.RFITimeEffect\\\" />\\r\\n            <Integer DataTag=\\\"FieldNumberOfDaysLabel\\\" Path=\\\"NumberOfDays\\\" />\\r\\n            <TextBox DataTag=\\\"FieldReferenceLabel\\\" Path=\\\"Reference\\\" />\\r\\n            <TextBox DataTag=\\\"FieldQuestionLabel\\\" Path=\\\"Question\\\" Lines=\\\"6\\\" />\\r\\n            <TextBox DataTag=\\\"FieldProposedSolutionLabel\\\" Path=\\\"ProposedSolution\\\" Lines=\\\"6\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldDaysOutstandingLabel\\\" Path=\\\"DaysOutstanding\\\" />\\r\\n            <TextBox Path=\\\"Notes\\\" DataTag=\\\"FieldNotesLabel\\\" Lines=\\\"6\\\" />\\r\\n            <Lookup Name=\\\"UniversalLookup1\\\" DataTag=\\\"FieldUniversalLookup1Label\\\" Path=\\\"UniversalLookup1\\\" List=\\\"kahua_UniversalLookup.Universal1\\\" />\\r\\n            <Lookup Name=\\\"UniversalLookup2\\\" DataTag=\\\"FieldUniversalLookup2Label\\\" Path=\\\"UniversalLookup2\\\" List=\\\"kahua_UniversalLookup.Universal2\\\" />\\r\\n            <Lookup Name=\\\"UniversalLookup3\\\" DataTag=\\\"FieldUniversalLookup3Label\\\" Path=\\\"UniversalLookup3\\\" List=\\\"kahua_UniversalLookup.Universal3\\\" />\\r\\n            <Lookup Name=\\\"UniversalLookup4\\\" DataTag=\\\"FieldUniversalLookup4Label\\\" Path=\\\"UniversalLookup4\\\" List=\\\"kahua_UniversalLookup.Universal4\\\" />\\r\\n            <Lookup Name=\\\"UniversalLookup5\\\" DataTag=\\\"FieldUniversalLookup5Label\\\" Path=\\\"UniversalLookup5\\\" List=\\\"kahua_UniversalLookup.Universal5\\\" />\\r\\n            <PortableViewTemplateSelector Name=\\\"PortableViewTemplate\\\" ViewName=\\\"kahua_AEC_RFI.RFIViewReport\\\" ViewLabel=\\\"[RFIViewReportLabel]\\\" DataTag=\\\"PortableViewTemplate\\\" EditPermission.AnyOf=\\\"kahua_AEC_RFI.EditViewTemplate\\\" />\\r\\n          </Section>\\r\\n          <Section Label=\\\"[AnchorSectionResponseLabel]\\\" LabelUpper=\\\"[AnchorSectionResponseLabelCapitalized]\\\">\\r\\n            <TagBox DataTag=\\\"FieldOfficialResponderLabel\\\" Path=\\\"OfficialResponder\\\" Query=\\\"Contacts\\\" SelectionMode=\\\"Single\\\" />\\r\\n            <TagBox DataTag=\\\"Responders\\\" Path=\\\"Responders\\\" Query=\\\"Contacts\\\" SelectionMode=\\\"Multiple\\\" />\\r\\n            <Date DataTag=\\\"FieldDateSentLabel\\\" Path=\\\"DateSent\\\" />\\r\\n            <Date DataTag=\\\"FieldDueDateLabel\\\" Path=\\\"DueDate\\\" />\\r\\n            <Date DataTag=\\\"FieldDateRespondedLabel\\\" Path=\\\"DateResponded\\\" />\\r\\n            <TextBox DataTag=\\\"FieldResponseLabel\\\" Path=\\\"Response\\\" Lines=\\\"6\\\" />\\r\\n          </Section>\\r\\n          <Section Name=\\\"Media\\\" Label=\\\"[AnchorSectionMediaLabel]\\\" LabelUpper=\\\"[AnchorSectionMediaLabelCapitalized]\\\" DataTag=\\\"AnchorSectionMediaLabel\\\">\\r\\n            <Media Path=\\\"Media\\\" Label=\\\"[Label_Media]\\\" Name=\\\"Media\\\" DataTag=\\\"Todo_Item_Media\\\">\\r\\n              <Media.Panel Title=\\\"[AnchorSectionMediaLabel]\\\">\\r\\n                <Region ContentRegion=\\\"MediaPanelEditContent\\\" />\\r\\n              </Media.Panel>\\r\\n            </Media>\\r\\n          </Section>\\r\\n          <Section Name=\\\"Pins\\\" Label=\\\"[AnchorSectionPinsLabel]\\\" LabelUpper=\\\"[AnchorSectionPinsLabelCapitalized]\\\">\\r\\n            <Pins Path=\\\"Pins\\\" Name=\\\"Pins\\\" />\\r\\n          </Section>\\r\\n          <Section DataTag=\\\"AnchorSectionReferencesLabel\\\" LabelUpper=\\\"[AnchorSectionReferencesLabelCapitalized]\\\">\\r\\n            <References />\\r\\n          </Section>\\r\\n        </ViewDef>\\r\\n        <ViewDef Name=\\\"PreviewView\\\" Title=\\\"{Number} {Subject}\\\" Permission.AnyOf=\\\"kahua_AEC_RFI.View\\\">\\r\\n          <Section Label=\\\"[AnchorSectionDetailsLabel]\\\" LabelUpper=\\\"[AnchorSectionDetailsLabelCapitalized]\\\">\\r\\n            <TextBlock DataTag=\\\"FieldNumberLabel\\\" Path=\\\"Number\\\" />\\r\\n            <TextBlock DataTag=\\\"RFI_RFIReferenceNumber1\\\" Path=\\\"RFIReferenceNumber1\\\" />\\r\\n            <TextBlock DataTag=\\\"RFI_RFIReferenceNumber2\\\" Path=\\\"RFIReferenceNumber2\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldDateLabel\\\" Path=\\\"Date\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldSubjectLabel\\\" Path=\\\"Subject\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldReasonLabel\\\" Path=\\\"Reason\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldStatusLabel\\\" Path=\\\"Status\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldAuthorLabel\\\" Path=\\\"Author\\\" />\\r\\n            <TextBlock DataTag=\\\"RFI_Type\\\" Label=\\\"[RFI_TypeLabel]\\\" Name=\\\"RFIType\\\" Path=\\\"Type\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldDisciplineLabel\\\" Path=\\\"Discipline\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldCSICodeLabel\\\" Path=\\\"CSICode\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldLocationLabel\\\" Path=\\\"Location\\\" />\\r\\n            <TextBlock Name=\\\"WorkSuspended\\\" DataTag=\\\"RFI_WorkSuspended\\\" Path=\\\"WorkSuspended\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldCostEffectLabel\\\" Path=\\\"CostEffect\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldCostAmountLabel\\\" Path=\\\"CostAmount\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldTimeEffectLabel\\\" Path=\\\"TimeEffect\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldNumberOfDaysLabel\\\" Path=\\\"NumberOfDays\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldReferenceLabel\\\" Path=\\\"Reference\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldQuestionLabel\\\" Path=\\\"Question\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldProposedSolutionLabel\\\" Path=\\\"ProposedSolution\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldDaysOutstandingLabel\\\" Path=\\\"DaysOutstanding\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldUniversalLookup1Label\\\" Path=\\\"UniversalLookup1\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldUniversalLookup2Label\\\" Path=\\\"UniversalLookup2\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldUniversalLookup3Label\\\" Path=\\\"UniversalLookup3\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldUniversalLookup4Label\\\" Path=\\\"UniversalLookup4\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldUniversalLookup5Label\\\" Path=\\\"UniversalLookup5\\\" />\\r\\n            <PortableViewTemplateSelector Name=\\\"PortableViewTemplate\\\" ViewName=\\\"kahua_AEC_RFI.RFIViewReport\\\" ViewLabel=\\\"[RFIViewReportLabel]\\\" DataTag=\\\"PortableViewTemplate\\\" IsReadOnly=\\\"True\\\" EditPermission.AnyOf=\\\"kahua_AEC_RFI.EditViewTemplate,kahua_AEC_RFI.EditViewTemplate\\\" />\\r\\n          </Section>\\r\\n          <Section Label=\\\"[AnchorSectionResponseLabel]\\\" LabelUpper=\\\"[AnchorSectionResponseLabelCapitalized]\\\">\\r\\n            <TextBlock DataTag=\\\"FieldOfficialResponderLabel\\\" Path=\\\"OfficialResponder\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldRespondersLabel\\\" Path=\\\"Responders\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldDateSentLabel\\\" Path=\\\"DateSent\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldDueDateLabel\\\" Path=\\\"DueDate\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldDateRespondedLabel\\\" Path=\\\"DateResponded\\\" />\\r\\n            <TextBlock DataTag=\\\"FieldResponseLabel\\\" Path=\\\"Response\\\" />\\r\\n          </Section>\\r\\n          <Section Name=\\\"Media\\\" Label=\\\"[AnchorSectionMediaLabel]\\\" LabelUpper=\\\"[AnchorSectionMediaLabelCapitalized]\\\" DataTag=\\\"AnchorSectionMediaLabel\\\">\\r\\n            <Media Path=\\\"Media\\\" Label=\\\"[Label_Media]\\\" Name=\\\"Media\\\" DataTag=\\\"Todo_Item_Media\\\" IsReadOnly=\\\"True\\\">\\r\\n              <Media.Panel Title=\\\"[AnchorSectionMediaLabel]\\\">\\r\\n                <Region ContentRegion=\\\"MediaPanelPreviewContent\\\" />\\r\\n              </Media.Panel>\\r\\n            </Media>\\r\\n          </Section>\\r\\n          <Section Name=\\\"Pins\\\" Label=\\\"[AnchorSectionPinsLabel]\\\" LabelUpper=\\\"[AnchorSectionPinsLabelCapitalized]\\\">\\r\\n            <Pins Path=\\\"Pins\\\" Name=\\\"Pins\\\" />\\r\\n          </Section>\\r\\n          <Section DataTag=\\\"AnchorSectionReferencesLabel\\\" LabelUpper=\\\"[AnchorSectionReferencesLabelCapitalized]\\\">\\r\\n            <References />\\r\\n          </Section>\\r\\n        </ViewDef>\\r\\n      </HubDef.ViewDefs>\\r\\n      <HubDef.OnEvents>\\r\\n        <OnEvent Event=\\\"SetReviewStartDate\\\">\\r\\n          <OnEvent.Directives>\\r\\n            <Map Direction=\\\"None\\\">\\r\\n              <Map.Mappings>\\r\\n                <Mapping From=\\\"DateSent\\\" To=\\\"ReviewStartDate\\\" />\\r\\n              </Map.Mappings>\\r\\n              <Map.Assignments>\\r\\n                <CurrentDate AppliesWhen=\\\"Empty\\\" To=\\\"ReviewStartDate\\\" />\\r\\n              </Map.Assignments>\\r\\n            </Map>\\r\\n          </OnEvent.Directives>\\r\\n        </OnEvent>\\r\\n        <OnEvent Event=\\\"SetReviewEndDate\\\">\\r\\n          <OnEvent.Directives>\\r\\n            <Map Direction=\\\"None\\\">\\r\\n              <Map.Mappings>\\r\\n                <Mapping From=\\\"DateResponded\\\" To=\\\"ReviewEndDate\\\" />\\r\\n              </Map.Mappings>\\r\\n            </Map>\\r\\n          </OnEvent.Directives>\\r\\n        </OnEvent>\\r\\n      </HubDef.OnEvents>\\r\\n    </HubDef>\\r\\n  </App.HubDefs>\\r\\n  <App.Launch Target.App=\\\"kahua_AEC_RFI\\\" Target.AppHosts=\\\"Kahua.Desktop|Kahua.Mobile\\\" Target.Containers=\\\"kahua_AEC_DocumentManagement.DocumentManagement|kahua_AEC_Sub_DocumentManagement.DocumentManagement\\\" Target.Icon=\\\"RFI\\\" Target.Label=\\\"[RFIAppNameLabel]\\\" />\\r\\n  <AppConfigurations>\\r\\n    <AppConfiguration DisplayName=\\\"[RFIAppNameLabel]\\\" ItemDisplayName=\\\"[RFIAppNameLabel]\\\" AllowRootItems=\\\"true\\\" CountType=\\\"Total\\\" ListVisibility=\\\"Visible\\\" DefaultList=\\\"Construction\\\" DefaultView=\\\"kahua_AEC_RFI.RFIListView\\\">\\r\\n      <Key />\\r\\n      <DataTagConfiguration>\\r\\n        <Key />\\r\\n        <DataTags>\\r\\n          <DataTag Name=\\\"FieldNumberLabel\\\" Label=\\\"[FieldNumberLabel]\\\" CultureLabelKey=\\\"FieldNumberLabel\\\" IsRequired=\\\"True\\\" IsRequiredLocked=\\\"True\\\" IsVisible=\\\"True\\\">\\r\\n            <Key />\\r\\n          </DataTag>\\r\\n          <DataTag Name=\\\"FieldDateLabel\\\" Label=\\\"[FieldDateLabel]\\\" CultureLabelKey=\\\"FieldDateLabel\\\" IsRequired=\\\"True\\\" IsRequiredLocked=\\\"True\\\" IsVisible=\\\"True\\\">\\r\\n            <Key />\\r\\n          </DataTag>\\r\\n          <DataTag Name=\\\"FieldSubjectLabel\\\" Label=\\\"[FieldSubjectLabel]\\\" CultureLabelKey=\\\"FieldSubjectLabel\\\" IsRequired=\\\"True\\\" IsRequiredLocked=\\\"True\\\" IsVisible=\\\"True\\\">\\r\\n            <Key />\\r\\n          </DataTag>\\r\\n          <DataTag Name=\\\"InitiatingDocumentsLabel\\\" Label=\\\"[InitiatingDocumentsLabel]\\\" CultureLabelKey=\\\"InitiatingDocumentsLabel\\\">\\r\\n            <Key />\\r\\n          </DataTag>\\r\\n          <DataTag Name=\\\"DestinationDocumentsLabel\\\" Label=\\\"[DestinationDocumentsLabel]\\\" CultureLabelKey=\\\"DestinationDocumentsLabel\\\">\\r\\n            <Key />\\r\\n          </DataTag>\\r\\n        </DataTags>\\r\\n      </DataTagConfiguration>\\r\\n      <EntityConfigurations>\\r\\n        <EntityConfiguration EntityDefName=\\\"kahua_AEC_RFI.RFI\\\">\\r\\n          <Key />\\r\\n          <AttributeConfigurations>\\r\\n            <AttributeConfiguration DataType=\\\"AutoNumber\\\" EntityDefAttributeName=\\\"Date\\\" MaxLength=\\\"0\\\">\\r\\n              <Key />\\r\\n              <DefaultValue>\\r\\n                <DefaultDate IsRelativeDate=\\\"True\\\" OffsetEnum=\\\"Day\\\" OffsetValue=\\\"0\\\" AbsoluteDate=\\\"\\\" />\\r\\n              </DefaultValue>\\r\\n            </AttributeConfiguration>\\r\\n            <AttributeConfiguration DataType=\\\"AutoNumber\\\" EntityDefAttributeName=\\\"ShortLabel\\\" MaxLength=\\\"0\\\">\\r\\n              <Key />\\r\\n              <DefaultValue>\\r\\n                <DefaultText Text=\\\"RFI [Number]\\\" />\\r\\n              </DefaultValue>\\r\\n            </AttributeConfiguration>\\r\\n            <AttributeConfiguration DataType=\\\"AutoNumber\\\" EntityDefAttributeName=\\\"LongLabel\\\" MaxLength=\\\"0\\\">\\r\\n              <Key />\\r\\n              <DefaultValue>\\r\\n                <DefaultText Text=\\\"RFI [Number]\\\" />\\r\\n              </DefaultValue>\\r\\n            </AttributeConfiguration>\\r\\n            <AttributeConfiguration DataType=\\\"AutoNumber\\\" EntityDefAttributeName=\\\"DetailLabel\\\" MaxLength=\\\"0\\\">\\r\\n              <Key />\\r\\n              <DefaultValue>\\r\\n                <DefaultText Text=\\\"RFI [Number]: [Subject]\\\" />\\r\\n              </DefaultValue>\\r\\n            </AttributeConfiguration>\\r\\n          </AttributeConfigurations>\\r\\n        </EntityConfiguration>\\r\\n      </EntityConfigurations>\\r\\n      <AutoNumberConfigurations>\\r\\n        <AutoNumberConfiguration AllowDuplicates=\\\"true\\\" EntityDefAttributeName=\\\"Number\\\" EntityDefName=\\\"kahua_AEC_RFI.RFI\\\" StartingNumber=\\\"1\\\" Type=\\\"AutoSuggest\\\" Width=\\\"4\\\">\\r\\n          <Key />\\r\\n        </AutoNumberConfiguration>\\r\\n      </AutoNumberConfigurations>\\r\\n      <WorkflowConfiguration>\\r\\n        <Key />\\r\\n      </WorkflowConfiguration>\\r\\n      <EulaConfiguration />\\r\\n      <DataViewConfiguration>\\r\\n        <DataViewDefs>\\r\\n          <DataViewDef Name=\\\"All\\\" Label=\\\"All\\\">\\r\\n            <DataSource Ref=\\\"kahua_AEC_RFI.RFIListData\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n            <Key />\\r\\n            <ColumnDefs>\\r\\n              <ColumnDef Name=\\\"Number_Column\\\" Label=\\\"[FieldNumberLabel]\\\">\\r\\n                <Control Name=\\\"RFINumber\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Number\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldNumberLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Subject_Column\\\" Label=\\\"[FieldSubjectLabel]\\\">\\r\\n                <Control Name=\\\"RFISubject\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Subject\\\" Format=\\\"MaxCharLength=150\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldSubjectLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Date_Column\\\" Label=\\\"[FieldDateLabel]\\\">\\r\\n                <Control Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" AutomationId=\\\"RFIDate\\\" DataSourceField=\\\"RFI.Date\\\" Format=\\\"DateShort\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldDateLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Status_Column\\\" Label=\\\"[FieldStatusLabel]\\\">\\r\\n                <Control Name=\\\"RFIStatus\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Status\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldStatusLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"OfficialResponder_Column\\\" Label=\\\"[FieldOfficialResponderLabel]\\\">\\r\\n                <Control Name=\\\"RFIOfficialResponderContactCompanyLabel\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.OfficialResponder.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldOfficialResponderLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"DueDate_Column\\\" Label=\\\"[FieldDueDateLabel]\\\">\\r\\n                <Control Name=\\\"RFIDueDate\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.DueDate\\\" Format=\\\"DateShort\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldDueDateLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"RespondedDate_Column\\\" Label=\\\"[FieldDateRespondedLabel]\\\">\\r\\n                <Control Name=\\\"RFIDateResponded\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.DateResponded\\\" Format=\\\"DateShort\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldDateRespondedLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"References_Column\\\" Label=\\\"[FieldReferencesLabel]\\\">\\r\\n                <Control Name=\\\"RFIOutwardReferences\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Grid\\\" DataSourceField=\\\"RFI.OutwardReferences\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldReferencesLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"Control8\\\" Type=\\\"Image\\\" FieldType=\\\"Image\\\" IsTabStop=\\\"False\\\" ImageSourceUri=\\\"/appResource;name=kahua_FileManager.File_Icon\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\" Height=\\\"16\\\">\\r\\n                      <VisibleWhen>\\r\\n                        <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{Data.Entity.Attributes[RFI.OutwardReferences].Data.Value.TotalRecords}\\\">\\r\\n                          <IsGreaterThan>0</IsGreaterThan>\\r\\n                        </Expression>\\r\\n                      </VisibleWhen>\\r\\n                    </Control>\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n                <PrintSettings PrintPath=\\\"RFI.OutwardReferences\\\" IncludeHasEntities=\\\"true\\\" />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"CreatedBy_Column\\\" Label=\\\"[FieldCreatedByLabel]\\\">\\r\\n                <Control Name=\\\"RFICreatedByContactCompanyLabel\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.CreatedBy.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldCreatedByLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Author_Column\\\" Label=\\\"[FieldAuthorLabel]\\\">\\r\\n                <Control Name=\\\"RFIAuthorContactCompanyLabel\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Author.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldAuthorLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"CSICode_Column\\\" Label=\\\"[FieldCSICodeLabel]\\\">\\r\\n                <Control Name=\\\"RFICSICodeCode\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.CSICode.Code\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldCSICodeLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Location_Column\\\" Label=\\\"[FieldLocationLabel]\\\">\\r\\n                <Control Name=\\\"RFILocationDescription\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Location.Description\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldLocationLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"CostEffect_Column\\\" Label=\\\"[FieldCostEffectLabel]\\\">\\r\\n                <Control Name=\\\"RFICostEffect\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.CostEffect\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldCostEffectLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Reason_Column\\\" Label=\\\"[FieldReasonLabel]\\\">\\r\\n                <Control Name=\\\"RFIReason\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Reason\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldReasonLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"TimeEffect_Column\\\" Label=\\\"[FieldTimeEffectLabel]\\\">\\r\\n                <Control Name=\\\"RFITimeEffect\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.TimeEffect\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldTimeEffectLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Reference_Column\\\" Label=\\\"[FieldReferenceLabel]\\\">\\r\\n                <Control Name=\\\"RFIReference\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Reference\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldReferenceLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Question_Column\\\" Label=\\\"[FieldQuestionLabel]\\\">\\r\\n                <Control Name=\\\"RFIQuestion\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Question\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldQuestionLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"ProposedSolution_Column\\\" Label=\\\"[FieldProposedSolutionLabel]\\\">\\r\\n                <Control Name=\\\"RFIProposedSolution\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.ProposedSolution\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldProposedSolutionLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Responders_Column\\\" Label=\\\"[FieldRespondersLabel]\\\">\\r\\n                <Control Name=\\\"RFIRespondersContactCompanyLabel\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Responders.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldRespondersLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n              <ColumnDef Name=\\\"Response_Column\\\" Label=\\\"[FieldResponseLabel]\\\">\\r\\n                <Control Name=\\\"RFIResponse\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Response\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[FieldResponseLabel]\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <PrintSettings />\\r\\n              </ColumnDef>\\r\\n            </ColumnDefs>\\r\\n          </DataViewDef>\\r\\n        </DataViewDefs>\\r\\n        <DataViews>\\r\\n          <DataView DataViewDef=\\\"kahua_AEC_RFI.All\\\" Name=\\\"Default\\\" Label=\\\"[DataViewAllLabel]\\\" Type=\\\"Detail\\\" GroupBy=\\\"\\\" AppName=\\\"\\\" ListName=\\\"\\\" IsDefault=\\\"false\\\" IsEditable=\\\"false\\\" SelectAction=\\\"\\\" DoubleClickAction=\\\"\\\" GroupByDataSource=\\\"\\\" GroupByLookupListId=\\\"0\\\">\\r\\n            <DataSource Ref=\\\"kahua_AEC_RFI.RFIListData\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n            <Key />\\r\\n            <Controls />\\r\\n            <DataViewColumns>\\r\\n              <DataViewColumn ColumnDef=\\\"Number_Column\\\" />\\r\\n              <DataViewColumn ColumnDef=\\\"Subject_Column\\\" />\\r\\n              <DataViewColumn ColumnDef=\\\"Status_Column\\\" />\\r\\n              <DataViewColumn ColumnDef=\\\"OfficialResponder_Column\\\" />\\r\\n              <DataViewColumn ColumnDef=\\\"DueDate_Column\\\" />\\r\\n              <DataViewColumn ColumnDef=\\\"RespondedDate_Column\\\" />\\r\\n              <DataViewColumn ColumnDef=\\\"References_Column\\\" />\\r\\n            </DataViewColumns>\\r\\n          </DataView>\\r\\n        </DataViews>\\r\\n      </DataViewConfiguration>\\r\\n      <PublishingConfiguration />\\r\\n      <ExportImportConfigurations>\\r\\n        <Exports>\\r\\n          <Document Name=\\\"RFIExportDefinition\\\">\\r\\n            <Sheet DataSource=\\\"kahua_AEC_RFI.RFIListExport\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" DataSourceScope=\\\"App\\\">\\r\\n              <Field Attribute=\\\"Number\\\" />\\r\\n              <Field Attribute=\\\"Date\\\" />\\r\\n              <Field Attribute=\\\"Subject\\\" />\\r\\n              <Field Attribute=\\\"Status\\\" />\\r\\n              <Field Attribute=\\\"Author\\\" IsLink=\\\"true\\\" />\\r\\n              <Field Attribute=\\\"CSICode\\\" IsLink=\\\"true\\\" />\\r\\n              <Field Attribute=\\\"Location\\\" IsLink=\\\"true\\\" />\\r\\n              <Field Attribute=\\\"CostEffect\\\" />\\r\\n              <Field Attribute=\\\"Reason\\\" />\\r\\n              <Field Attribute=\\\"TimeEffect\\\" />\\r\\n              <Field Attribute=\\\"Reference\\\" />\\r\\n              <Field Attribute=\\\"Question\\\" />\\r\\n              <Field Attribute=\\\"ProposedSolution\\\" />\\r\\n              <Field Attribute=\\\"Responders\\\" IsLink=\\\"true\\\" />\\r\\n              <Field Attribute=\\\"OfficialResponder\\\" IsLink=\\\"true\\\" />\\r\\n              <Field Attribute=\\\"DueDate\\\" />\\r\\n              <Field Attribute=\\\"DateResponded\\\" />\\r\\n              <Field Attribute=\\\"Response\\\" />\\r\\n              <Field Attribute=\\\"Discipline\\\" />\\r\\n              <Field Attribute=\\\"WorkSuspended\\\" />\\r\\n              <Field Attribute=\\\"Type\\\" />\\r\\n              <Field Attribute=\\\"RFIReferenceNumber1\\\" />\\r\\n              <Field Attribute=\\\"RFIReferenceNumber2\\\" />\\r\\n              <Field Attribute=\\\"UniversalLookup1\\\" />\\r\\n              <Field Attribute=\\\"UniversalLookup2\\\" />\\r\\n              <Field Attribute=\\\"UniversalLookup3\\\" />\\r\\n              <Field Attribute=\\\"UniversalLookup4\\\" />\\r\\n              <Field Attribute=\\\"UniversalLookup5\\\" />\\r\\n            </Sheet>\\r\\n            <Sheet DataSource=\\\"kahua_AEC_CSICode.CSICodeListExport\\\" EntityDef=\\\"kahua_AEC_CSICode.CSICode\\\" DataSourceScope=\\\"App\\\">\\r\\n              <Field Attribute=\\\"Code\\\" />\\r\\n              <Field Attribute=\\\"Parent\\\" IsLink=\\\"true\\\" />\\r\\n              <Field Attribute=\\\"Description\\\" />\\r\\n              <Field Attribute=\\\"Notes\\\" />\\r\\n            </Sheet>\\r\\n            <Sheet DataSource=\\\"kahua_Location.LocationListExport\\\" EntityDef=\\\"kahua_Location.Location\\\" DataSourceScope=\\\"App\\\">\\r\\n              <Field Attribute=\\\"Type\\\" />\\r\\n              <Field Attribute=\\\"Name\\\" />\\r\\n              <Field Attribute=\\\"Description\\\" />\\r\\n              <Field Attribute=\\\"Notes\\\" />\\r\\n            </Sheet>\\r\\n            <Sheet DataSource=\\\"kahua_PeopleManager.kahua_PeopleListExport\\\" EntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" DataSourceScope=\\\"App\\\">\\r\\n              <Field Attribute=\\\"Prefix\\\" />\\r\\n              <Field Attribute=\\\"FirstName\\\" />\\r\\n              <Field Attribute=\\\"LastName\\\" />\\r\\n              <Field Attribute=\\\"Suffix\\\" />\\r\\n              <Field Attribute=\\\"Title\\\" />\\r\\n              <Field Attribute=\\\"EmailAddress\\\" />\\r\\n              <Field Attribute=\\\"Direct\\\" />\\r\\n              <Field Attribute=\\\"Mobile\\\" />\\r\\n              <Field Attribute=\\\"Fax\\\" />\\r\\n              <Field Attribute=\\\"Company\\\" />\\r\\n              <Field Attribute=\\\"Office\\\" />\\r\\n              <Field Attribute=\\\"Facebook\\\" />\\r\\n              <Field Attribute=\\\"Twitter\\\" />\\r\\n              <Field Attribute=\\\"LinkedIn\\\" />\\r\\n              <Field Attribute=\\\"AIM\\\" />\\r\\n              <Field Attribute=\\\"YahooMessenger\\\" />\\r\\n              <Field Attribute=\\\"LiveMessenger\\\" />\\r\\n              <Field Attribute=\\\"Skype\\\" />\\r\\n              <Field Attribute=\\\"Notes\\\" />\\r\\n            </Sheet>\\r\\n          </Document>\\r\\n        </Exports>\\r\\n        <Imports NewItemsRequireWorkflow=\\\"false\\\" />\\r\\n      </ExportImportConfigurations>\\r\\n      <SharingConfiguration>\\r\\n        <Key />\\r\\n        <DataSource Ref=\\\"kahua_AEC_RFI.RFIListData\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n        <FilterColumns>\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.CreatedBy.ContactCompanyLabel\\\" Label=\\\"[FieldCreatedByLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Number\\\" Label=\\\"[FieldNumberLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Subject\\\" Label=\\\"[FieldSubjectLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Status\\\" Label=\\\"[FieldStatusLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.OfficialResponder.ContactCompanyLabel\\\" Label=\\\"[FieldOfficialResponderLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.DueDate\\\" Label=\\\"[FieldDueDateLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.DateResponded\\\" Label=\\\"[FieldDateRespondedLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Author.ContactCompanyLabel\\\" Label=\\\"[FieldAuthorLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.CSICode.Code\\\" Label=\\\"[FieldCSICodeLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Location.Description\\\" Label=\\\"[FieldLocationLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.CostEffect\\\" Label=\\\"[FieldCostEffectLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Reason\\\" Label=\\\"[FieldReasonLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.TimeEffect\\\" Label=\\\"[FieldTimeEffectLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Reference\\\" Label=\\\"[FieldReferenceLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Question\\\" Label=\\\"[FieldQuestionLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.ProposedSolution\\\" Label=\\\"[FieldProposedSolutionLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Responders.ContactCompanyLabel\\\" Label=\\\"[FieldRespondersLabel]\\\" DataType=\\\"Text\\\" />\\r\\n          <FilterColumn DataSourceFieldName=\\\"RFI.Response\\\" Label=\\\"[FieldResponseLabel]\\\" DataType=\\\"Text\\\" />\\r\\n        </FilterColumns>\\r\\n      </SharingConfiguration>\\r\\n      <ReportConfiguration>\\r\\n        <ReportWizardConfiguration />\\r\\n      </ReportConfiguration>\\r\\n    </AppConfiguration>\\r\\n    <AppConfiguration DisplayName=\\\"[ListPreConstructionLabel]\\\" ItemDisplayName=\\\"[ListItemPreConstructionLabel]\\\" ListName=\\\"PreConstruction\\\" AllowRootItems=\\\"true\\\" CountType=\\\"Total\\\" ListVisibility=\\\"Default\\\" DefaultDataView=\\\"kahua_MessageManager.ConstructionDataView\\\">\\r\\n      <Key />\\r\\n      <DataTagConfiguration>\\r\\n        <Key />\\r\\n      </DataTagConfiguration>\\r\\n      <WorkflowConfiguration>\\r\\n        <Key />\\r\\n      </WorkflowConfiguration>\\r\\n      <EulaConfiguration />\\r\\n      <DataViewConfiguration>\\r\\n        <DataViewDefs />\\r\\n        <DataViews />\\r\\n      </DataViewConfiguration>\\r\\n      <PublishingConfiguration />\\r\\n      <SharingConfiguration>\\r\\n        <Key />\\r\\n        <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n      </SharingConfiguration>\\r\\n      <ReportConfiguration>\\r\\n        <ReportWizardConfiguration />\\r\\n      </ReportConfiguration>\\r\\n    </AppConfiguration>\\r\\n    <AppConfiguration DisplayName=\\\"[ListConstructionLabel]\\\" ItemDisplayName=\\\"[ListItemConstructionLabel]\\\" ListName=\\\"Construction\\\" AllowRootItems=\\\"true\\\" CountType=\\\"Total\\\" ListVisibility=\\\"Default\\\">\\r\\n      <Key />\\r\\n      <DataTagConfiguration>\\r\\n        <Key />\\r\\n      </DataTagConfiguration>\\r\\n      <WorkflowConfiguration>\\r\\n        <Key />\\r\\n      </WorkflowConfiguration>\\r\\n      <EulaConfiguration />\\r\\n      <DataViewConfiguration>\\r\\n        <DataViewDefs />\\r\\n        <DataViews />\\r\\n      </DataViewConfiguration>\\r\\n      <PublishingConfiguration />\\r\\n      <SharingConfiguration>\\r\\n        <Key />\\r\\n        <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n      </SharingConfiguration>\\r\\n      <ReportConfiguration>\\r\\n        <ReportWizardConfiguration />\\r\\n      </ReportConfiguration>\\r\\n    </AppConfiguration>\\r\\n  </AppConfigurations>\\r\\n  <Apps>\\r\\n    <App Ref=\\\"kahua_AEC_IndexManagement\\\" />\\r\\n    <App Ref=\\\"kahua_PeopleManager\\\" />\\r\\n    <App Ref=\\\"kahua_AEC_CSICode\\\" />\\r\\n    <App Ref=\\\"kahua_Location\\\" />\\r\\n    <App Ref=\\\"kahua_Core\\\" />\\r\\n    <App Ref=\\\"kahua_Workflow\\\" />\\r\\n    <App Ref=\\\"kahua_MessageManager\\\" />\\r\\n    <App Ref=\\\"kahua_Media\\\" />\\r\\n    <App Ref=\\\"kahua_WorkflowLabels\\\" />\\r\\n    <App Ref=\\\"kahua_UniversalLookup\\\" />\\r\\n  </Apps>\\r\\n  <Cultures ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\" AppHostType=\\\"Default\\\">\\r\\n    <Culture Code=\\\"en\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Early / Late Response</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Close</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">NEW</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">PRINT</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">View Reports</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Reports</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">SHARING...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">LOCATION</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">Location</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">Tools for managing AEC Requests For Information</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Assigned To</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Assigned To</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">RFI Cost Effect</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Date</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Date</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Date Responded</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Date Responded</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Distribution</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Due Date</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Due Date</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">RFI Number</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">RFI Official Responder</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Official Responder</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">RFI Proposed Solution</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Proposed Solution</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">RFI Question</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Question</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Reason</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Reason</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Reference</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Reference</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">RFI Responders</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Responders</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">RFI Response</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Response</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">Secondary Response</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">Secondary Reviewers</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">Secondary Reviewers</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">Sheet/Detail#</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">Sheet/Detail #</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">RFI Status</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">RFI Subject</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Time Effect</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">RFI Time Effect</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">RFI Type</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Kahua RFI Workflow</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">OFFICIAL RESPONDER</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">RESPONDED</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">STATUS</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Declined</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">Delete</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">Are you sure you want to move this item to the recycle bin?</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Destination Documents</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Assigned To</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">ASSIGNED TO</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Cost Amount</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Cost Effect</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">COST EFFECT</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">Created By</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">Date</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Date Sent</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Date Submitted</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Days Outstanding</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Discipline</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Discipline</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Distribution</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">Pinned</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">PINNED</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">Pin Instance Name</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">PIN INSTANCE NAME</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">Number</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Number of Days</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Official Responder</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">OFFICIAL RESPONDER</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Originator</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">ORIGINATOR</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Project</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Proposed Solution</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">PROPOSED SOLUTION</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Question</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">QUESTION</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Reason</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">REASON</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Reference</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">REFERENCE</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Responders</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Responder</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">RESPONDERS</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">Sent to Owner</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">Subject</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Time Effect</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">TIME EFFECT</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Custom Universal Lookup 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Custom Universal Lookup 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Custom Universal Lookup 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Custom Universal Lookup 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Custom Universal Lookup 5</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Initiating Documents</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Construction</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">Construction RFI</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">Pre-Construction RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Pre-Construction</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Cost Effect</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Cost Effect</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Group By</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Group By</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Discipline</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Discipline</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Reason</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Reason</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Status</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Status</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Time Effect</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Time Effect</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Data</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Favorites</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">More</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">Reports</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Add</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">ADD</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Create New Item</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">New RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Edit</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">EDIT</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">New</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Remove</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">REMOVE</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] has been responded to by [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResponse: [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] has responded to RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResponse: Declined.&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] has responded to RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResponse: [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">RFI [Attribute(Number)] submitted on [DomainPartitionListName] has been recalled. This RFI may or may not be resubmitted.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tA response has been submitted for RFI [Attribute(Number)] by [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResponse: [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">\\r\\n          A response has been submitted for RFI [Attribute(Number)] by [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n          Subject: [Attribute(Subject)]&lt;br/&gt;\\r\\n          Question: [Attribute(Question)]&lt;br/&gt;\\r\\n          Response: [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n        </Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] has been resubmitted by [Attribute(Author.ShortLabel)] to [Attribute(OfficialResponder.ShortLabel)] with the following subject and question: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: {Question}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProposed Solution: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] has been submitted by [Attribute(Author.ShortLabel)] to [Attribute(OfficialResponder.ShortLabel)] with the following subject and question: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProposed Solution: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] has been submitted by [Attribute(Author.ShortLabel)] to [Attribute(OfficialResponder.ShortLabel)] with the following subject and question: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProposed Solution: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tYou have been listed as a Secondary responder on this RFI.  If you wish to submit a response, please do so in Kahua by [Date(Source=Attribute,Path=DueDate)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] has been submitted by [Attribute(Author.ShortLabel)] with the following subject and question: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSubject: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProposed Solution: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPlease submit your response by [Date(Source=Attribute,Path=DueDate)].\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">RFI [Attribute(Number)] has been responded to on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] has declined to responded to RFI [Attribute(Number)] on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] has responded to RFI [Attribute(Number)] on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">RFI [Attribute(Number)] submitted on [DomainPartitionName] has been recalled</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">Response submitted for RFI [Attribute(Number)] on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">Response submitted for RFI [Attribute(Number)] on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">RFI [Attribute(Number)] resubmitted on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">RFI [Attribute(Number)] submitted on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">RFI [Attribute(Number)] submitted on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">RFI [Attribute(Number)] submitted on [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">None</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">Official Responder must be a user</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">Official Response is Required</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Official Response</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">Process</Label>\\r\\n        <Label Key=\\\"Responders\\\">Responders</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Responders Comments (not included in final response)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">Work Suspended</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">Work Suspended</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Decrease</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Increase</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">None</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Unknown</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Detailed Request for Information Report.</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Detailed RFI Report</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">RFI Detail Report</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Architect</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Electrical</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">Interior Design</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Landscape</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Mechanical</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Plumbing</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Structural</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Alternate Proposal</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Clarification</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Conflict</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Insufficient Information</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Cancel</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">OK</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">RFI Report</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">RFI Report</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">RFI Report</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Closed</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Open</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Delay</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">None</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Time Savings</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Unknown</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Request for Information</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Request for Information</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Request for Information</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">SHARE</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">Date is required.</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">Number is required.</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">Subject is required.</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Cost Effect</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Date</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Date Responded</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Due Date</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Number</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Official Responder</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Proposed Solution</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Question</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Reason</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Reference</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Responded</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Response</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">RFI Edit</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">New RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Requests For Information</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">RFI Details</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Status</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Subject</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Time Effect</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Type</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">RFI Log Sorted By Number</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">RFI Log Sorted By Number</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">RFI Log Grouped By Submitter</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">RFI Log Grouped By Submitter</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">RFI Log Grouped By Responder</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">RFI Log Grouped By Responder</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">RFI Log Grouped By Status</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">RFI Log Grouped By Status</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Submitter</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Date Created</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Status / Action / Response</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">Overdue and Due Today</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] By [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] By [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] By [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] Overdue By Official Responder</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Unresponded Count</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Overdue Count</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Unresponded By Official Responder</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] Modified Past 24 Hours Count</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] Due Today or Tomorrow Count</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] By [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] Created Last 30 Days Count</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] Responded Past 30 Days Count</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Late Response Count</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] On Time Response Count</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] by Month Created</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">User’s Company is Named on Record</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Type</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Design Clarification</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Existing Condition Conflict</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Schedule Clarification</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Scope Clarification</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">RFI Reference Number 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">RFI Reference Number 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">RFI Reference Number 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">RFI Reference Number 2</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">RFI Log</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">RFI Days Outstanding</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">RFI Query Data Souce</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"es\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Respuesta temprana/tardía</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Cerrar</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">NUEVO</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">IMPRIMIR</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Ver Reportes</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Informes</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">COMPARTIENDO...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">UBICACIÓN</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">Ubicación</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">Herramientas para administrar los Requerimientos de Información (RFIs) de AIC</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Asignar a</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Asignar a</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">Efecto de costo del RFI</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Fecha</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Fecha</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Fecha de respuesta</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Fecha de respuesta</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Distribución</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Fecha límite</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Fecha límite</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">Número del RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">Contestador Oficial del Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Contestador Oficial</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">Solución Propuesta al RFI</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Solución Propuesta</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">Pregunta al RFI</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Pregunta</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Razón</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Razón</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Referencia</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Referencia</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">Contestadores de RFI</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Contestadores</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">Respuesta RFI</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Respuesta</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">Respuesta Secundaria</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">Revisores Secundarios</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">Revisores Secundarios</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">Hoja/Detalle#</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">Hoja/Detalle</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">Estatus del RFI</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">Título del RFI</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">Efecto de tiempo del RFI</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">Tipo de RFI</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Flujo de Trabajo del Requerimiento de Información</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">CONTESTADOR OFICIAL</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">RESPONDIDO</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">ESTADO</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Rechazado</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">Eliminar</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">¿Está seguro de que desea mover este elemento a la papelera de reciclaje?</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Documentos de destino</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Asignar a</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">ASIGNADO A</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Importe de costos</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Efecto de costo</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">EFECTO DE COSTOS</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">Creado por</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">Fecha</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Fecha de envío</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Fecha de envío</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Días pendientes</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Distribución</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">Fijado</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">FIJADO</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">Nombre de instancia fija</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">NOMBRE DE INSTANCIA FIJA</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">Número</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Cantidad de días</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Contestador Oficial</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">CONTESTADOR OFICIAL</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Autor</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">AUTOR</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Proyecto</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Solución Propuesta</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">SOLUCIÓN PROPUESTA</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Pregunta</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">PREGUNTA</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Razón</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">RAZÓN</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Referencia</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">REFERENCIA</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Contestadores</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">CONTESTADORES</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">Tema</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">EFECTO DEL TIEMPO</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Documentos de inicio</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Construcción</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">Construcción del RFI</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">Pre-construcción del RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Pre-construcción</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Efecto de costo</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Efecto de costo</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Agrupar por</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Agrupar por</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Razón</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Razón</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Estado</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Estado</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Datos</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Favoritos</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">Más</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">Informes</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Añadir</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">AÑADIR</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Crear nuevo elemento</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Crear nuevo RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Editar</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">EDITAR</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">Nuevo</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Eliminar</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">ELIMINAR</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLa RFI [Attribute(Number)] ha sido respondida por [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRespuesta: [Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] ha respondido a RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRespuesta: Rechazado.&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] ha respondido a RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRespuesta: [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">RFI [Attribute(Number)] presentado [DomainPartitionListName] ha sido anulada. Esta RFI se puede o no se puede volver a presentar.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tUna respuesta ha sido presentada para RFI [Attribute(Number)] por [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRespuesta: [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          Una respuesta ha sido presentada para RFI [Attribute(Number)] por [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n          Asunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n          Pregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n          Respuesta: [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLaRFI [Attribute(Number)] ha sido presentada por [Attribute(Author.ShortLabel)] a [Attribute(OfficialResponder.ShortLabel)] con la siguiente pregunta y asunto: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: {Question}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolución propuesta: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLaRFI [Attribute(Number)] ha sido presentada por [Attribute(Author.ShortLabel)] a [Attribute(OfficialResponder.ShortLabel)] con la siguiente pregunta y asunto: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolución propuesta: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLaRFI [Attribute(Number)] ha sido presentada por [Attribute(Author.ShortLabel)] a [Attribute(OfficialResponder.ShortLabel)] con la siguiente pregunta y asunto: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolución propuesta: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSe le ha catalogado como una respuesta secundaria en esta RFI.  Si desea enviar una respuesta, por favor hágalo en Kahua antes de [Date(Source=Attribute,Path=DueDate)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLa RFI [Attribute(Number)] ha sido presentada [Attribute(Author.ShortLabel)] con la siguiente pregunta y asunto:  &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAsunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPregunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolución propuesta: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPor favor, envíe su respuesta antes de [Date(Source=Attribute,Path=DueDate)].\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">La RFI [Attribute(Number)] ha sido respondida en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] se ha negado a responder a la RFI [Attribute(Number)] en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] ha respondido a la RFI [Attribute(Number)] en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">La RFI [Attribute(Number)] presentada en [DomainPartitionListName] ha sido anulada</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">Respuesta presentada para la RFI [Attribute(Number)] en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">Respuesta presentada para la RFI [Attribute(Number)] en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">La RFI [Attribute(Number)] fue reenviada en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">LaRFI [Attribute(Number)] presentada en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">LaRFI [Attribute(Number)] presentada en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">LaRFI [Attribute(Number)] presentada en [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">Ninguno</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">El respondedor oficial debe ser un usuario</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">Se Requiere un Contestador Oficial</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Respuesta Oficial</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">Proceso</Label>\\r\\n        <Label Key=\\\"Responders\\\">Contestadores</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Comentarios del Contestador (no incluidos en la respuesta final)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">Trabajo suspendido</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">Trabajo suspendido</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Disminución</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Incremento</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">Ninguno</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Desconocido</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Reporte Detallado del Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Reporte detallado de RFI</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">Reporte de detalles del RFI</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Arquitecto</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Eléctrico</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">Diseño de interiores</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Paisaje</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Mecánico</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Plomería</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Estructural</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Propuesta alternativa</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Aclaración</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Conflicto</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Información insuficiente</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Cancelar</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">Ok</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">Reporte del RFI</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">Reporte del RFI</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">Reporte del RFI</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Cerrado</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Abierto</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Retraso</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">Ninguno</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Ahorro de tiempo</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Desconocido</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">COMPARTIR</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">Se necesita la fecha</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">Se requiere el número.</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">Se requiere un Título</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Efecto de costo</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Fecha</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Fecha de respuesta</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Fecha límite</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Número</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Contestador Oficial</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Solución Propuesta</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Pregunta</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Razón</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Referencia</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Respondido</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Respuesta</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">Editar RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">Crear nuevo RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Solicitudes de Información</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">Detalles del RFI</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Estado</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Tema</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Tipo</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">Registro del RFI ordenado por número</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">Registro del RFI ordenado por número</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Respondedor</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">Registro del RFI agrupado por remitente</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">Registro del RFI agrupado por remitente</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">Registro del RFI agrupado por respondedor</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">Registro del RFI agrupado por respondedor</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">Registro del RFI agrupado por estado </Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">Registro del RFI agrupado por estado </Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Remitente</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Fecha de creación</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Estado / Acción / Respuesta</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">vencido y vencido hoy</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] por [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] Por [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] Por [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Recuento de atrasos</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Recuento de respuestas no respondidas</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Sin respuesta del respondedor oficial</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] Retrasado por el respondedor oficial</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] Recuento de las últimas 24 horas modificado</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] Recuento vencido hoy o mañana</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] Por [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] Cuenta de los últimos 30 días creados</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] Número de respuestas de los últimos 30 días</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Recuento de respuestas tardías</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] Recuento de respuestas a tiempo</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] por mes de creación</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">La empresa del usuario está nombrada en el registro</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Tipo</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Aclaración de diseño</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Conflicto de condición existente</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Horario Aclaración</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Aclaración del alcance</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">Número de referencia RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">Número de referencia RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">Número de referencia RFI 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">Número de referencia RFI 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Búsqueda universal personalizada 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Búsqueda universal personalizada 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Búsqueda universal personalizada 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Búsqueda universal personalizada 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Búsqueda universal personalizada 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">Enviado al propietario</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">Registro RFI</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">Días pendientes de RFI</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">Fuente de datos de consulta RFI</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"es-ES\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\"></Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Cerrar</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">NUEVO</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\"></Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Ver informes</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Reportes</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">COMPARTIENDO…</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\"></Label>\\r\\n        <Label Key=\\\"AppDescription\\\"></Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\"></Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\"></Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">Efecto de  costo del RFI</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Fecha del documento</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Fecha</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Fecha de recepción de respuesta</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Fecha de recepción de respuesta</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\"></Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Fecha de vencimiento</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Fecha de vencimiento</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\"></Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">Contestador Oficial del Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Contestador Oficial</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">Solución Propuesta al RFI</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Solución Propuesta</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">Pregunta al RFI</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Pregunta</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Razón</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Razón</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Referencia</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Referencia</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">Contestadores de RFI</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Contestadores</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">Respuesta RFI</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Respuesta</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\"></Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\"></Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\"></Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\"></Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\"></Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\"></Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\"></Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">Efecto de tiempo del RFI</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">Tipo de RFI</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\"></Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">CONTESTADOR OFICIAL</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">RESPONDIDO</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">ESTADO</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\"></Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\"></Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\"></Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\"></Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Efecto del Costo</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">EFECTO DE COSTOS</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\"></Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Contestador Oficial</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">CONTESTADOR OFICIAL</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Autor</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">CREADOR</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Solución Propuesta</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">SOLUCIÓN PROPUESTA</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Pregunta</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">PREGUNTA</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Razón</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">RAZÓN</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Referencia</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">REFERENCIA</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Respondedores</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">RESPONDEDORES</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">EFECTO DEL TIEMPO</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\"></Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Construcción</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">Construcción del RFI</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">Pre-construcción del RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Pre-construcción</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Efecto del Costo</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Efecto del Costo</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Grupo por</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Grupo por</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\"></Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\"></Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Razón</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Razón</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Estatus</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Estatus</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Datos</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Favoritos</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">Más</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">informes</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Agregar</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">AGREGAR</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Crear Nuevo Artículo</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Crear nuevo RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Editar</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">EDITAR</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">Nuevo</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Editar</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">EDITAR</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\"></Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\"></Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\"></Label>\\r\\n        <Label Key=\\\"NoneLabel\\\"></Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\"></Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\"></Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\"></Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\"></Label>\\r\\n        <Label Key=\\\"Responders\\\">Respondedores</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\"></Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\"></Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\"></Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\"></Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\"></Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Reporte Detallado del Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Informe detallado de RFI</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">Reporte de detalles del RFI</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\"></Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\"></Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\"></Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\"></Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\"></Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\"></Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\"></Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\"></Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\"></Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\"></Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\"></Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Cancelar</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">Ok</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">Informe del RFI</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">Informe del RFI</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">Informe del RFI</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\"></Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\"></Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\"></Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\"></Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\"></Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\"></Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Requerimiento de Información (RFI)</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">COMPARTIR</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">Se necesita la fecha</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">Se requiere un Número</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">Se requiere un Título.</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Efecto del Costo</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Fecha</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Fecha de recepción de respuesta</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Fecha de vencimiento</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Número</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Contestador Oficial</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Solución Propuesta</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Pregunta</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Razón</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Referencia</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Respondido</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Respuesta</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">Editar RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">Nuevo RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Pedir información</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">Detalles del RFI</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Estatus</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Título</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Efecto del Tiempo</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Tipo</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\"></Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\"></Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\"></Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\"></Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\"></Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\"></Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\"></Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\"></Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\"></Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\"></Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\"></Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\"></Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\"></Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\"></Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\"></Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\"></Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\"></Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\"></Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\"></Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\"></Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\"></Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\"></Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\"></Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\"></Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\"></Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\"></Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\"></Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\"></Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"tr\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Erken / Geç Müdahale</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\"></Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">YAZDIR</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Raporları Görüntüle</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\"></Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\"></Label>\\r\\n        <Label Key=\\\"AppDescription\\\">AEC bilgi taleplerini yï¿½netmek iï¿½in araï¿½lar.</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">Insaat Bilgi Isteme Yï¿½netimi</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Atandı</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Atandı</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">RFI Maliyet Etkisi</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Tarih</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Tarih</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Tarih Cevaplandı</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Tarih Cevaplandı</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Dağıtım</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Bitiş Tarihi</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Bitiş Tarihi</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">Madde Numarası</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">RFI Resmi Cevaplayan</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Resmi Cevaplayan</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">RFI önerilen Çözüm</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">önerilen Çözüm</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">RFI Soru</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Soru</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Sebep</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Sebep</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Referans</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Referans</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">RFI Yanıtlayıcıları</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Yanıt verenler</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">Yanıt</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Yanıt</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">İkincil Yanıt</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">İkincil İncelemeciler</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">İkincil İncelemeciler</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">Sayfa/Detay#</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">Sayfa/Detay #</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">Madde Durumu</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">Madde Konusu</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Zaman etkisi</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">RFI Zaman Etkisi</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">Madde Tipi</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Saha RFI İş Akışı</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">RESMİ YANITÇI</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">YANITLANDI</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Tür</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Reddedildi</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\"></Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\"></Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Hedef Belgeleri</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFIlar</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFIlar</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Atandı</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">ATANDI</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Maliyet Tutarı</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Maliyet Etkisi</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">MALİYET ETKİSİ</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Tarih gönderildi</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Date Submitted</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Olağanüstü Günler</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Disiplin</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Disiplin</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Dağıtım</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Gün sayısı</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Resmi Cevaplayan</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Kaynak</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">ORİJİNATÖR</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Proje</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">önerilen Çözüm</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">ÖNERİLEN ÇÖZÜM</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Soru</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">SORU</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Sebep</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Referans</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">REFERANS</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">CEVAP VERENLER</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\"></Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Zaman etkisi</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">ZAMAN ETKİSİ</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Belgeleri Başlatma</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">inşaat RFIs</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">inşaat RFI</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">İnşaat Öncesi RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">İnşaat Öncesi</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Maliyet Etkisi</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Maliyet Etkisi</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Grupla</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Grupla</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Disiplin</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Disiplin</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Sebep</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Sebep</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Durum</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Durum</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Tür</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Tür</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Zaman etkisi</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Zaman etkisi</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Yeni Kayit Yarat</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Yeni RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\"></Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFIlar</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\r\\nRFI [Attribute(Number)], [Attribute(OfficialResponder.ShortLabel)] tarafından yanıtlandı:&lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: [Attribute(Question)]&lt;br/&gt;\\r\\nYanıt: [Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\r\\n[Attribute(Task_To)], RFI [Attribute(Number)]'a yanıt verdi.&lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: [Attribute(Question)]&lt;br/&gt;\\r\\nYanıt: Reddedildi.&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\r\\n[Attribute(Task_To)], RFI'ya [Attribute(Number)] yanıt verdi.&lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: [Attribute(Question)]&lt;br/&gt;\\r\\nYanıt: [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">[Attribute(Number)] üzerinde gönderilen RFI [DomainPartitionListName] geri çağrıldı. Bu RFI yeniden gönderilebilir veya sunulmayabilir.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\r\\nRFI [Attribute(Number)] için [Attribute(OfficialResponder.ShortLabel)] tarafından bir yanıt gönderildi:&lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: [Attribute(Question)]&lt;br/&gt;\\r\\nYanıt: [Attribute(Response)]&lt;br/&gt;\\r\\n&lt;p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">\\r\\n          RFI [Attribute(Number)] için [Attribute(OfficialResponder.ShortLabel)] tarafından bir yanıt gönderildi:&lt;br/&gt;\\r\\n          Konu: [Attribute(Subject)]&lt;br/&gt;\\r\\n          Soru: [Attribute(Question)]&lt;br/&gt;\\r\\n          Yanıt: [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n        </Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\r\\nRFI [Attribute(Number)], [Attribute(Author.ShortLabel)] tarafından [Attribute(OfficialResponder.ShortLabel)]'a aşağıdaki konu ve soruyla yeniden gönderildi: &lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: {Soru&lt;br/&gt;\\r\\nÖnerilen Çözüm: [Attribute(ProposedSolution)]\\r\\n&lt;p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\r\\nRFI [Attribute(Number)], [Attribute(Author.ShortLabel)] tarafından [Attribute(OfficialResponder.ShortLabel)]'a aşağıdaki konu ve soruyla gönderildi: &lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: [Attribute(Question)]&lt;br/&gt;\\r\\nÖnerilen Çözüm: [Attribute(ProposedSolution)]\\r\\n&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\r\\nRFI [Attribute(Number)], [Attribute(Author.ShortLabel)] tarafından [Attribute(OfficialResponder.ShortLabel)]'a aşağıdaki konu ve soruyla gönderildi: &lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: [Attribute(Question)]&lt;br/&gt;\\r\\nÖnerilen Çözüm: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\nBu RFI'da İkincil yanıtlayıcı olarak listelendiniz. Bir yanıt göndermek istiyorsanız lütfen bunu Kahua'da [Date(Source=Attribute,Path=DueDate)] tarihine kadar yapın.\\r\\n&lt;p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\r\\nRFI [Attribute(Number)], [Attribute(Author.ShortLabel)] tarafından aşağıdaki konu ve soruyla gönderildi: &lt;br/&gt;\\r\\nKonu: [Attribute(Subject)]&lt;br/&gt;\\r\\nSoru: [Attribute(Question)]&lt;br/&gt;\\r\\nÖnerilen Çözüm: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\nLütfen yanıtınızı [Date(Source=Attribute,Path=DueDate)] tarihine kadar gönderin.\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">RFI [Attribute(Number)], [DomainPartitionName] üzerinde yanıtlandı</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)], [Attribute(Number)] üzerindeki RFI [DomainPartitionName]'a yanıt vermeyi reddetti</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)], [Attribute(Number)] üzerinde RFI [DomainPartitionName]'a yanıt verdi</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">[Attribute(Number)] üzerinde gönderilen RFI [DomainPartitionName] geri çağrıldı</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">[Attribute(Number)] üzerinde RFI [DomainPartitionName] için yanıt gönderildi</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">[Attribute(Number)] üzerinde RFI [DomainPartitionName] için yanıt gönderildi</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">RFI [Attribute(Number)], [DomainPartitionName] üzerinde yeniden gönderildi</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">RFI [Attribute(Number)], [DomainPartitionName] üzerinde gönderildi</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">RFI [Attribute(Number)], [DomainPartitionName] üzerinde gönderildi</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">RFI [Attribute(Number)], [DomainPartitionName] üzerinde gönderildi</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">Yok</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">Resmi Yanıtlayan bir kullanıcı olmalıdır</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">Resmi Yanıt Gerekli</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Resmi Yanıt</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\"></Label>\\r\\n        <Label Key=\\\"Responders\\\"></Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Yanıtlayanların Yorumları (son yanıta dahil edilmemiştir)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">İş Askıya Alındı</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">İş Askıya Alındı</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Azaltmak</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Arttırmak</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">Yok</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Bilinmeyen</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Detaylı Bilgi Talebi Raporu.</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Detaylı RFI Raporu</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">RFI Detaylı Raporu</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Mimar</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Elektriksel</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">İç dizayn</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Manzara</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Mekanik</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Sıhhi tesisat</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Yapısal</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\"></Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Alternatif Teklif</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Açıklama</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Anlaşmazlık</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Yetersiz Bilgi</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">iptal</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">Tamam</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">RFI Raporu</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">RFI Raporu</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">RFI Raporu</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Kapalı</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Açık</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Gecikme</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">Yok</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Zaman Tasarrufu</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Bilinmeyen</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Bilgi Talebi</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Bilgi Talebi</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Bilgi Talebi</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\"></Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\"></Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\"></Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\"></Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Maliyet Etkisi</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Tarih</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Cevaplanma Tarihi</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Bitiş Tarihi</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Numara</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Resmi Cevaplayan</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">önerilen Çözüm</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Soru</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Sebep</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Referans</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Yanitlandi</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Yanıt</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">RFI Düzenle</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\"></Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Bilgi Talebi</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">RFI Detayları</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Durum</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Konu</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Zaman etkisi</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Tï¿½r</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFIlar</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">Numaraya Göre Sıralanmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">Numaraya Göre Sıralanmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Yanıtlayıcı</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">Gönderene Göre Gruplandırılmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">Gönderene Göre Gruplandırılmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">Yanıtlayana Göre Gruplandırılmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">Yanıtlayana Göre Gruplandırılmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">Duruma Göre Gruplandırılmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">Duruma Göre Gruplandırılmış RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Gönderen</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Oluşturma Tarihi</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Durum / Eylem / Yanıt</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">Gecikmiş ve Bugün Vadesi Gelmiş</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] Yazan: [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] Yazan: [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] Yazan: [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Gecikme Sayısı</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Yanıtlanmayan Sayım</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Resmi Yanıtlayıcı Tarafından Yanıt Verilmedi</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] Resmi Yanıtlayıcı Tarafından Gecikmiş</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] Son 24 Saatte Değiştirilen Sayım</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] Teslim Tarihi Bugün veya Yarın Sayımı</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] Yazan: [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] Oluşturulan Son 30 Gün Sayısı</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] Son 30 Gün Sayısında Yanıt Verildi</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Geç Yanıt Sayısı</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] Zamanında Yanıt Sayısı</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">Oluşturulan Aya Göre [AppLabel]</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">Kullanıcının Şirketi Kayıtlarda Belirtiliyor</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Çeşit</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Çeşit</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Çeşit</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Çeşit</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Tasarım Açıklama</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Mevcut Durum Çatışması</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Program Açıklama</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Kapsam Açıklama</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">RFI Referans Numarası 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">RFI Referans Numarası 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">RFI Referans Numarası 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">RFI Referans Numarası 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Özel Evrensel Arama 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Özel Evrensel Arama 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Özel Evrensel Arama 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Özel Evrensel Arama 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Özel Evrensel Arama 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">Sahibine Gönderildi</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">RFI Günlüğü</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">RFI Günleri Olağanüstü</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">RFI Sorgu Veri Kaynağı</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"pt-BR\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Resposta Antecipada/Atrasada</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Fechar</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">NOVO</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">IMPRESSÃO</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Visualizar Relatórios</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Relatórios</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">COMPARTILHAR...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">LOCALIDADE</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">Localização</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">Ferramentas para gerenciar Solicitações de Informações de AEC</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Atribuído A</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Atribuído A</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">Eficiência de Custo de RFI</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Data</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Data</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Data da resposta</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Data da resposta</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Distribuição</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Data de vencimento</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Data de vencimento</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">Número de RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">Respondente Oficial de RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Respondente Oficial</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">Solução Proposta de RFI</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Solução Proposta</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">Pergunta de RFI</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Pergunta</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Razão</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Razão</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Referência</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Referência</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">Respondentes de RFI</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Respondentes</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">Resposta de RFI</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Resposta</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">Resposta Secundária</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">Revisores Secundários</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">Revisores Secundários</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">Folha/Detalhe#</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">Folha/Detalhe #</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">Status de RFI</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">Assunto de RFI</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Eficiência de Tempo</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">Eficiência de Tempo de RFI</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">Tipo de RFI</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Workflow de RFI da Kahua</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">RESPONDENTE OFICIAL</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">RESPONDEU</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">ESTADO</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Recusado</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">Eliminar</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">Tem certeza de que deseja mover este item para a lixeira?</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Documentos de destino</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Atribuído A</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">ATRIBUÍDO A</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Total do custo</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Efeito de custo</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">EFICIÊNCIA DE CUSTO</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">Criado por</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">Data</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Data de Envio</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Data de envio</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Dias pendentes</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Distribuição</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">Fixado</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">FIXADO</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">Fixar nome de evento</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">FIXAR NOME DE EVENTO</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">Número</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Número de dias</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Respondente Oficial</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">RESPONDENTE OFICIAL</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Criador</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">CRIADOR</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Projeto</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Solução Proposta</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">SOLUÇÃO PROPOSTA</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Pergunta</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">PERGUNTA</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Razão</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">RAZÃO</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Referência</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">REFERÊNCIA</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Respondentes</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">RESPONDENTES</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">Assunto</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Eficiência de Tempo</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">EFICIÊNCIA DE TEMPO</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Documentos iniciais</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Construção</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">RFI de Construção</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">RFI de Pré-Construção</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Pré-Construção</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Efeito de custo</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Efeito de custo</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Grupo por</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Grupo por</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Disciplina</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Razão</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Razão</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Estado</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Estado</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Eficiência de Tempo</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Eficiência de Tempo</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Dados</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Favoritos</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">Mais</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">Relatórios</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Adicionar</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">ADICIONAR</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Criar novo item</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Novo RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Editar</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">EDITAR</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">Novo</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Tirar</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">REMOVER</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] foi respondido por [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResposta: [Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] respondeu ao RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResposta: Recusado.&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] respondeu ao RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResposta: [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">O RFI [Attribute(Number)] enviado em [DomainPartitionListName] foi retirado. Este RFI poderá ser reenviado ou não.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tUma resposta para o RFI [Attribute(Number)] foi enviada por [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tResposta: [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          Uma resposta para o RFI [Attribute(Number)] foi enviada por [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n          Assunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n          Pergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n          Resposta: [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tO RFI [Attribute(Number)] foi reenviado por [Attribute(Author.ShortLabel)] para [Attribute(OfficialResponder.ShortLabel)], com o assunto e a pergunta seguintes: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: {Question}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolução proposta: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tO RFI [Attribute(Number)] foi enviado por [Attribute(Author.ShortLabel)] para [Attribute(OfficialResponder.ShortLabel)], com o assunto e a pergunta seguintes: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolução proposta: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tO RFI [Attribute(Number)] foi enviado por [Attribute(Author.ShortLabel)] para [Attribute(OfficialResponder.ShortLabel)], com o assunto e a pergunta seguintes: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolução proposta: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tVocê foi listado como um respondedor secundário neste RFI.  Se você deseja enviar uma resposta, envie-a pelo Kahua até [Date(Source=Attribute,Path=DueDate)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tO RFI [Attribute(Number)] foi enviado por [Attribute(Author.ShortLabel)], com o assunto e a pergunta seguintes: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAssunto: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPergunta: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolução proposta: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFavor enviar a sua resposta até [Date(Source=Attribute,Path=DueDate)].\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">O RFI [Attribute(Number)] foi respondido em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] se recusou a responder ao RFI [Attribute(Number)] em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] respondeu ao RFI [Attribute(Number)] em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">O RFI [Attribute(Number)] enviado em [DomainPartitionName] foi retirado</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">Resposta enviada para o RFI [Attribute(Number)] em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">Resposta enviada para o RFI [Attribute(Number)] em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">RFI [Attribute(Number)] reenviado em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">RFI [Attribute(Number)] enviado em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">RFI [Attribute(Number)] enviado em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">RFI [Attribute(Number)] enviado em [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">Nenhum</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">O Respondente Oficial deve ser um usuário</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">A Resposta Oficial é obrigatória</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Resposta Oficial</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">Processo</Label>\\r\\n        <Label Key=\\\"Responders\\\">Respondentes</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Comentários dos Respondentes (não incluídos na resposta final)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">Trabalho suspenso</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">Trabalho suspenso</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Diminuir</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Aumentar</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">Nenhum</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Desconhecido</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Solicitação Detalhada para Relatório de Informação.</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Relatório de RFI Detalhado</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">Relatório de RFI Detalhado</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Arquiteto</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Elétrico</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">Design de interiores</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Paisagismo</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Mecânico</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Encanamento</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Estrutural</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Proposta alternativa</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Esclarecimento</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Conflito</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Informações insuficientes</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Cancelar</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">OK</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">Relatório de RFI</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">Relatório de RFI</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">Relatório de RFI</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Fechado</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Aberto</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Atraso</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">Nenhum</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Economia de tempo</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Desconhecido</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Solicitação de Informações</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Solicitação de Informações</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Solicitação de Informações</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">COMPARTILHAR</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">A data é obrigatória.</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">O número é obrigatório.</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">O assunto é obrigatório.</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Efeito de custo</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Data</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Data da resposta</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Data de vencimento</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Número</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Respondente Oficial</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Solução Proposta</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Pergunta</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Razão</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Referência</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Respondido</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Resposta</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">Edição de RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">Novo RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Solicitações de Informações</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">Detalhes de RFI</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Estado</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Assunto</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Eficiência de Tempo</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Tipo</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">Log de RFI agrupado por número</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">Log de RFI agrupado por número</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Respondente</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">Log de RFI agrupado por remetente</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">Log de RFI agrupado por remetente</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">Log de RFI agrupado por respondente</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">Log de RFI agrupado por respondente</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">Log de RFI agrupado por status</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">Log de RFI agrupado por status</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Apresentador</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Data de criação</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Status/ação/resposta</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">Vencido e Vencido Hoje</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] Por [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] Por [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] Por [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Contagem atrasada</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Contagem não respondida</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Não respondido pelo respondente oficial</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] Atrasado pelo Respondente Oficial</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] Contagem modificada das últimas 24 horas</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] Contagem de vencimento hoje ou amanhã</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] Por [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] Contagem dos últimos 30 dias criados</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] Contagem de respostas nos últimos 30 dias</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Contagem de respostas atrasadas</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] Contagem de tempo de resposta</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] por mês de criação</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">A empresa do usuário é nomeada no registro</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Tipo</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Tipo</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Esclarecimento do Projeto</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Conflito de Condição Existente</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Esclarecimento do cronograma</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Esclarecimento do Escopo</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">Número de referência RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">Número de referência RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">Número de referência RFI 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">Número de referência RFI 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Pesquisa universal personalizada 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Pesquisa universal personalizada 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Pesquisa universal personalizada 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Pesquisa universal personalizada 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Pesquisa universal personalizada 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">Enviado ao Proprietário</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">Registro de RFI</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">RFI dias pendentes</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">Fonte de dados de consulta RFI</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"ja\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">早期/後期対応</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">閉じる</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">新規バージョン</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">印刷</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">レポートの表示</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">レポート</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">共有</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">ロケーション</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">場所</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">情報提供依頼（情報要求）管理ツール</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">割当先</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">割当先</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">コスト効果</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">作成日</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">作成日</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">回答日</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">回答日</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">分配</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">締切日</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">締切日</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">情報提供依頼番号</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">情報提供依頼正規回答者</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">第１レビュー担当</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">情報提供依頼提案ソリューション</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">提案ソリューション</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">情報提供依頼質問</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">質問</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">理由</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">理由</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">参照物</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">参照物</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">情報提供依頼回答者</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">回答者</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">情報提供依頼回答</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">回答</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">二次応答者</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">二次レビュー担当</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">二次レビュー担当</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">シート/詳細#</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">シート/詳細#</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">情報提供依頼ステータス</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">情報提供依頼件名</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">タイム・エフェクト</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">情報提供依頼タイム・エフェクト</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">情報提供依頼タイプ</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">情報提供依頼のワークフロー</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">第１レビュー担当</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">回答済み</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">ステータス</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">種類</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">拒否</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">削除</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">このアイテムをごみ箱に移動してもよろしいですか？</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">宛先文書</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">割当先</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">割当て先</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">コスト金額</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">コスト効果</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">コスト効果</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">作成者</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">作成日</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">送信日</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">提出日</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">存続日数</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">分野</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">分野</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">分配</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">ピン止め</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">ピン止め</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">ピンインスタンス名</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">ピンインスタンス名</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">番号</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">日数</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">第１レビュー担当</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">第１レビュー担当</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">申請者</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">申請者</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">プロジェクト</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">提案ソリューション</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">提案ソリューション</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">質問</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">質問</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">理由</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">理由</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">参照物</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">参照物</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">回答者</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">回答者</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">件名</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">タイム・エフェクト</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">タイム・エフェクト</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">ドキュメントの開始</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">施工</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">施工情報提供依頼</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">施工前情報提供依頼</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">施工準備</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">コスト効果</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">コスト効果</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">グループ別</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">グループ別</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">分野</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">分野</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">理由</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">理由</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">状況</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">状況</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">種類</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">種類</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">タイム・エフェクト</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">タイム・エフェクト</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">データ</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">お気に入り</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">続きを見る</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">レポート</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">追加</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">追加</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">新規項目の作成</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">新規情報要求</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">編集する</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">編集</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">新規</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">削除</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">削除</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">                                                                                                 情報提供依頼 [Attribute(Number)] は[Attribute(OfficialResponder.ShortLabel)]によって応答されています：&lt;br/&gt;                                                                                      件名：[Attribute(Subject)]&lt;br/&gt;                                                                                    質問：[Attribute(Question)]&lt;br/&gt;                                                                                       応答：[Attribute(Response)]&lt;br/&gt; </Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">                                                                                       [Attribute(Task_To)]は情報提供依頼 [Attribute(Number)]に応答しました。&lt;br/&gt;                                                                                         件名：[Attribute(Subject)]&lt;br/&gt;                                                                                         質問：[Attribute(Question)]&lt;br/&gt;                                                                                         応答：拒否。&lt;br/&gt; </Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">                                                                                       [Attribute(Task_To)]は情報提供依頼 [Attribute(Number)]に応答しました。&lt;br/&gt;                                                                                         件名：[Attribute(Subject)]&lt;br/&gt;                                                                                         質問：[Attribute(Question)]&lt;br/&gt;                                                                                         応答：[Attribute(ResponseSecondary)]&lt;br/&gt; </Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\"> [DomainPartitionListName]に提出した情報提供依頼 [Attribute(Number)] は取り消されました。 この情報提供依頼は再提出してもしなくてもよいです。</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">                                                                                    応答は、[Attribute(OfficialResponder.ShortLabel)]により情報提供依頼 [Attribute(Number)] のために提出されました：&lt;br/&gt;                                                                                  件名：[Attribute(Subject)]&lt;br/&gt;                                                                                  質問：[Attribute(Question)]&lt;br/&gt;                                                                                  応答：[Attribute(Response)]&lt;br/&gt;                                                                                 &lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          応答は、[Attribute(OfficialResponder.ShortLabel)]により情報提供依頼 [Attribute(Number)] のために提出されました：&lt;br/&gt;           件名：[Attribute(Subject)]&lt;br/&gt;           質問：[Attribute(Question)]&lt;br/&gt;           応答：[Attribute(Response)]&lt;br/&gt;           &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt; </Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">                                                                                 情報提供依頼 [Attribute(Number)]は以下の件名と質問と共に、 [Attribute(Author.ShortLabel)]により[Attribute(OfficialResponder.ShortLabel)] へ再送信されました。 &lt;br/&gt;                                                                                   件名：[Attribute(Subject)]&lt;br/&gt;                                                                                   質問：{質問}&lt;br/&gt;                                                                                   提案された解決策： [Attribute(Author.ShortLabel)]                                                                                 &lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">                                                                                    情報提供依頼 [Attribute(Number)]は以下の件名と質問と共に、 [Attribute(Author.ShortLabel)]により[Attribute(OfficialResponder.ShortLabel)] へ再送信されました。 &lt;br/&gt;                                                                                   件名：[Attribute(Subject)]&lt;br/&gt;                                                                                   質問：[Attribute(Question)]&lt;br/&gt;                                                                                 提案された解決策： [Attribute(Author.ShortLabel)]                                                                             &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt; </Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">                                                                                    情報提供依頼 [Attribute(Number)]は以下の件名と質問と共に、 [Attribute(Author.ShortLabel)]により[Attribute(OfficialResponder.ShortLabel)] へ再送信されました。 &lt;br/&gt;                                                                                   件名：[Attribute(Subject)]&lt;br/&gt;                                                                                   質問：[Attribute(Question)]&lt;br/&gt;                                                                                 提案された解決策： [Attribute(Author.ShortLabel)]&lt;br/&gt;                                                                               あなたはこの情報提供依頼の二次応答者としてリストされています。  応答を提出したい場合は、Kahuaで[Date(Source=Attribute,Path=DueDate)]までに提出してください。                                                                            &lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">                                                                                                 情報提供依頼 [Attribute(Number)] は以下の件名と質問と共に [Attribute(Author.ShortLabel)] によって提出されました。 &lt;br/&gt;                                                                                              件名：[Attribute(Subject)]&lt;br/&gt;                                                                                                 質問：[Attribute(Question)]&lt;br/&gt;                                                                                               提案された解決策： [Attribute(Author.ShortLabel)]&lt;br/&gt;                                                                                                   [Date(Source=Attribute,Path=DueDate)]までに応答を提出してください。 </Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">情報提供依頼 [Attribute(Number)]は[DomainPartitionName]で応答しています。</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] は[DomainPartitionName]で情報提供依頼 [Attribute(Number)]に対して拒否しました。</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] は[DomainPartitionName]で情報提供依頼 [Attribute(Number)]に応答しました。。</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">[DomainPartitionName] に提出した情報提供依頼 [Attribute(Number)] は取り消されました。</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">情報提供依頼[Attribute(Number)] のために[DomainPartitionName]で応答が提出されました。</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">情報提供依頼[Attribute(Number)] のために[DomainPartitionName]で応答が提出されました。</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">情報提供依頼[Attribute(Number)]は[DomainPartitionName]で再提出しました。</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">情報提供依頼 [Attribute(Number)]は [DomainPartitionName]で提出しました。</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">情報提供依頼 [Attribute(Number)]は [DomainPartitionName]で提出しました。</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">情報提供依頼 [Attribute(Number)]は [DomainPartitionName]で提出しました。</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">なし</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">正式な応答者はユーザーである必要があります</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">正式な応答が必要です</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">正式な応答</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">プロセス</Label>\\r\\n        <Label Key=\\\"Responders\\\">回答者</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">応答者のコメント（最終応答に含まれない）</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">中断された作業</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">中断された作業</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">減少</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">増加</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">なし</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">不明</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">詳細情報要求レポート</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">詳細情報提供依頼レポート</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">情報提供依頼詳細レポート</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">建築家</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">電気</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">インテリア・デザイン</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">地形</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">機械</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">配管工事</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">構造</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">代替提案</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">明確化</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">対立</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">不十分な情報</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">取消し</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">OK</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">情報提供依頼レポート</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">情報提供依頼レポート</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">情報提供依頼レポート</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">終了済み</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">調査中</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">遅延</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">なし</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">時間短縮</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">不明</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">情報要求</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">情報要求</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">情報要求</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">共有</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">日付の入力が必要です</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">番号が必要です。</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">件名が必要です。</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">コスト効果</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">作成日</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">回答日</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">締切日</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">番号</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">第１レビュー担当</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">提案ソリューション</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">質問</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">理由</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">参照物</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">回答済</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">回答</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">情報提供依頼の編集</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">新規情報要求</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">情報請求</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">情報提供依頼詳細</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">状況</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">件名</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">タイム・エフェクト</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">種類</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">情報提供依頼</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">番号でソートされたRFIログ</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">番号でソートされたRFIログ</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">応答者</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">送信者別に分類されたRFIログ</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">送信者別に分類されたRFIログ</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">応答者別に分類されたRFIログ</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">応答者別に分類されたRFIログ</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">状況別に分類されたRFIログ</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">状況別に分類されたRFIログ</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">提出者</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">作成日</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">状況/対処/応答</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">期限切れおよび本日期限</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[FieldStatusLabel]別[AppLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[FieldReasonLabel]別[AppLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[FieldCostEffectLabel]別[AppLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">期限切れ[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">未回答の[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">正式回答者による対応のない[AppLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel]が正式な回答者により遅延しています</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">過去24時間に変更された[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">今日または明日期限切れになる[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[FieldTimeEffectLabel]別[AppLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">過去30日間に作成された[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">過去30日間に回答された[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">回答が遅延した[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">適時に回答された[AppLabel]数</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">月別[AppLabel]の作成</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">ユーザーの会社は記録に名前が付けられています</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">種類</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">種類</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">種類</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">種類</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">設計の明確化</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">既存の条件の競合</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">スケジュールの明確化</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">範囲の明確化</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">RFI参照番号1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">RFI参照番号1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">RFI参照番号2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">RFI参照番号2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">カスタムユニバーサルルックアップ1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">カスタムユニバーサルルックアップ2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">カスタムユニバーサルルックアップ3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">カスタムユニバーサルルックアップ4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">カスタムユニバーサルルックアップ5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">所有者に送信</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">情報提供ログ</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">RFI の未処理日数</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">RFI クエリ データ ソース</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"fr\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Réponse précoce/tardive</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Fermer</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">NOUVEAU</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">IMPRIMER</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Afficher les rapports</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Rapports</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">EN COURS DE PARTAGE...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">EMPLACEMENT</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">Emplacement</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">Outils de gestion des demandes d'information sur AEC </Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Assigné à</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Assigné à</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">Incidence financière de RFI</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Date</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Date</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Date de réponse</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Date de réponse</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Distribution</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Date d'échéance</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Date d'échéance</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">Numéro de RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">Intervenant officiel de RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Intervenant officiel</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">Solution proposée par RFI </Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Solution proposée</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">Question RFI </Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Question</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Raison</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Raison</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Référence</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Référence</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">Intervenants RFI</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Intervenants</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">Réponse RFI</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Réponse</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">Réponse secondaire</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">Évaluateurs secondaires</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">Évaluateurs secondaires</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">No. de Fiche/Information</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">No. de Fiche/Information</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">État du RFI</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">Sujet du RFI</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Incidence temporelle</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">Incidence temporelle de RFI</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">Type de RFI</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Flux de travail RFI de Kahua</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">INTERVENANT OFFICIEL</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">RÉPONSE</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">STATUT</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Refusé</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">Effacer</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">Êtes-vous sûr(e) de vouloir mettre cet élément à la corbeille ?</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Documents de destination</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFI</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Assigné à</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">ATTRIBUÉE À</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Montant du coût</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Incidence financière</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">INCIDENCE FINANCIÈRE</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">Créé par</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">Date</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Date d'envoi</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Date de soumission</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Jours en suspens</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Discipline</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Discipline</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Distribution</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">Épinglé</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">ÉPINGLÉ</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">Nom épinglé de l'instance</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">NOM ÉPINGLÉ DE L'INSTANCE</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">Nombre</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Nombre de jours</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Intervenant officiel</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">INTERVENANT OFFICIEL</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Auteur</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">AUTEUR</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Projet</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Solution proposée</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">SOLUTION PROPOSÉE</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Question</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">QUESTION</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Raison</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">RAISON</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Référence</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">RÉFÉRENCE</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Intervenants</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">INTERVENANTS</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">Sujet</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Incidence temporelle</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">INCIDENCE TEMPORELLE</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Documents de lancement</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Construction</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">Construction RFI</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">Pré-construction RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Pré-construction</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Incidence financière</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Incidence financière</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Groupe par</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Groupe par</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Discipline</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Discipline</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Raison</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Raison</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Statut</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Statut</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Incidence temporelle</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Incidence temporelle</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Donnée</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Favoris</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">Plus</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">Rapports</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Ajouter</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">AJOUTER</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Créer un nouvel article</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Nouveau RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Modifier</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">MODIFIER</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">Nouveau</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Retirer</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">RETIRER</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLa RFI [Attribute(Number)] a reçu une réponse de [Attribute(OfficialResponder.ShortLabel)] :&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRéponse : [Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] a répondu à la RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRéponse : Refusé.&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] a répondu à la RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRéponse : [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">La RFI [Attribute(Number)] soumise à [DomainPartitionListName] a été rappelée. Cette RFI peut ou ne peut pas être soumise à nouveau.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tUne réponse a été soumise pour la RFI [Attribute(Number)] par [Attribute(OfficialResponder.ShortLabel)] :&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRéponse : [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          Une réponse a été soumise pour la RFI [Attribute(Number)] par [Attribute(OfficialResponder.ShortLabel)] :&lt;br/&gt;\\r\\n          Objet : [Attribute(Subject)]&lt;br/&gt;\\r\\n          Question : [Attribute(Question)]&lt;br/&gt;\\r\\n          Réponse : [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLa RFI [Attribute(Number)] été soumise à nouveau par [Attribute(Author.ShortLabel)] à [Attribute(OfficialResponder.ShortLabel)] avec l'objet et la question ci-après : &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : {Question}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolution proposée : [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLa RFI [Attribute(Number)] a été soumise par [Attribute(Author.ShortLabel)] à [Attribute(OfficialResponder.ShortLabel)] avec l'objet et la question ci-après : &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolution proposée : [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLa RFI [Attribute(Number)] a été soumise par [Attribute(Author.ShortLabel)] à [Attribute(OfficialResponder.ShortLabel)] avec l'objet et la question ci-après : &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolution proposée : [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tVous avez été répertorié comme un intervenant secondaire sur cette RFI.  Si vous souhaitez soumettre une réponse, veuillez le faire dans Kahua pour le [Date(Source=Attribut,Path=DueDate)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tLa RFI [Attribute(Number)] a été soumise par [Attribute(Author.ShortLabel)] avec l'objet et la question ci-après : &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tObjet : [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tQuestion : [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSolution proposée : [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tVeuillez soumettre votre réponse pour le [Date(Source=Attribut,Path=DueDate)].\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">La RFI [Attribute(Number)] a reçu une réponse sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] a refusé de répondre à la RFI [Attribute(Number)] sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] a répondu à la RFI [Attribute(Number)] sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">La RFI [Attribute(Number)] soumise à [DomainPartitionListName] a été rappelée.</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">Réponse soumise pour la RFI [Attribute(Number)] sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">Réponse soumise pour la RFI [Attribute(Number)] sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">La RFI [Attribute(Number)] soumise à nouveau sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">La RFI [Attribute(Number)] soumise sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">La RFI [Attribute(Number)] soumise sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">La RFI [Attribute(Number)] soumise sur [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">Aucun</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">L'intervenant officiel doit être un utilisateur</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">Une réponse officielle est requise</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Réponse officielle</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">Processus</Label>\\r\\n        <Label Key=\\\"Responders\\\">Intervenants</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Commentaires des intervenants (non inclus dans la réponse finale)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">Travail suspendu</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">Travail suspendu</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Diminution</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Augmentation</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">Aucun</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Inconnu</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Demande détaillée de rapport d'information.</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Rapport détaillé RFI</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">Rapport détaillé de RFI</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Préparateur</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Électrique</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">Design d'intérieur</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Aménagement extérieur</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Mécanique</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Plomberie</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Structurel</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Offre alternative</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Clarification</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Conflit</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Information insuffisante</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Annuler</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">OK</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">Rapport RFI</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">Rapport RFI</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">Rapport RFI</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Fermé</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Ouvert</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Retard</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">Aucun</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Gain de temps</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Inconnu</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Demande d'information</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Demande d'information</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Demande d'information</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">PARTAGER</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">La date est requise.</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">Un numéro est requis.</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">Le sujet est requis.</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Incidence financière</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Date</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Date de réponse</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Date d'échéance</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Nombre</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Intervenant officiel</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Solution proposée</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Question</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Raison</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Référence</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Réponse</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Réponse</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">Modifier le RFI </Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">Nouveau RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Demandes d'information</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">Informations sur le RFI</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Statut</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Sujet</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Incidence temporelle</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Type</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">Journal RFI trié par numéro</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">Journal RFI trié par numéro</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Intervenant</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">Journal RFI regroupé par émetteur</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">Journal RFI regroupé par émetteur</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">Journal RFI regroupé par répondeur</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">Journal RFI regroupé par répondeur</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">Journal RFI regroupé par statut</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">Journal RFI regroupé par statut</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Soumettant</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Date de création</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Statut / Action / Réponse</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">En retard et dû aujourd'hui</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] Par [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] Par [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] Par [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Nombre de retards</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Nombre de non répondu</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Non répondu par le répondeur officiel</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] En retard par le répondant officiel</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] modifié après la période des 24 dernières heures</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] nombre échu aujourd'hui ou demain</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] par [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] créé au cours des 30 derniers jours</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] Nombre répondu au cours des 30 derniers jours</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Nombre de réponses tardives</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] Nombre de réponses dans les délais</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] par mois de création</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">La société de l'utilisateur est nommée dans l'enregistrement</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Type</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Type</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Clarification de la conception</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Conflit de conditions existantes</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Clarification de l'horaire</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Clarification de la portée</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">Numéro de référence RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">Numéro de référence RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">Numéro de référence RFI 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">Numéro de référence RFI 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Recherche universelle personnalisée 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Recherche universelle personnalisée 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Recherche universelle personnalisée 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Recherche universelle personnalisée 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Recherche universelle personnalisée 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">Envoyé au propriétaire</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">Journal RFI</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">RFI Days Outstanding</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">Source de données de requête RFI</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"zh-CN\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">早/晚反应</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">关闭</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">新建</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">打印</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">查看报告</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">报表</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">正在共享...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">位置</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">位置</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">管理AEC信息请求的工具</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">信息请求（RFIs）</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">指定给</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">指定给</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">RFI成本效应</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">日期</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">日期</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">回复日期</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">回复日期</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">分配</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">截止日期</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">截止日期</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">RFI数量</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">RFI官方响应人</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">官方响应人</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">RFI建议的解决方案</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">建议的解决方案</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">RFI问题</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">问题</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">原因</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">原因</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">参考</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">参考</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">RFI响应人</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">响应</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">RFI响应</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">回应</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">二级响应</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">二级审核人</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">二级审核人</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">表/详细信息＃</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">表/详细信息＃</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">RFI状态</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">RFI主题</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">时间效应</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">RFI时间效应</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">RFI类型</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Kahua RFI工作流</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">官方响应人</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">回应</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">状态</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">类型</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">已拒绝</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">删除</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">您确定要将此项目移动到回收站吗？</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">目的文件</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">信息请求（RFIs）</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">信息请求（RFIs）</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">指定给</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">指定给</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">成本金额</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">成本效应</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">成本效应</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">制作者</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">日期</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">发送日期</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">提交日期</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">未回复天数</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">规制</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">规制</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">分配</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">固定的</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">固定的</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">固定实例名称</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">固定实例名称</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">数字</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">天数</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">官方响应人</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">官方响应人</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">发起人</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">发起人</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">项目</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">建议的解决方案</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">建议的解决方案</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">问题</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">问题</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">原因</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">原因</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">参考</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">参考</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">响应</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">响应</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">主题</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">时间效应</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">时间效应</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">启动文件</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">施工</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">施工信息请求（RFI）</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">施工前RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">施工前</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">成本效应</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">成本效应</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">分组规则</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">分组规则</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">规制</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">规制</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">原因</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">原因</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">状态</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">状态</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">类型</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">类型</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">时间效应</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">时间效应</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">数据</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">收藏夹</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">更多</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">报表</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">添加</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">添加</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">新建项</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">新RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">编辑</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">编辑</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">新的</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">移除</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">移除</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">信息请求（RFIs）</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)]已由[Attribute(OfficialResponder.ShortLabel)]回复：&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：[Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t回复：[Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)]已对RFI [Attribute(Number)]做出了回复。&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：[Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t回复：拒绝。&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)]已对RFI [Attribute(Number)]做出了回复。&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：[Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t回复：[Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">在[Attribute(Number)]上提交的RFI [DomainPartitionListName]已被撤回。 该RFI也许可以或不可以被重新提交。</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Number)]已提交了一个关于RFI [Attribute(OfficialResponder.ShortLabel)]的回复：&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：[Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t回复：[Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          [Attribute(Number)]已提交了一个关于RFI [Attribute(OfficialResponder.ShortLabel)]的回复：&lt;br/&gt;\\r\\n          主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n          问题：[Attribute(Question)]&lt;br/&gt;\\r\\n          回复：[Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Number)]已将RFI [Attribute(Author.ShortLabel)]重新提交给[Attribute(OfficialResponder.ShortLabel)]，其主题和问题如下： &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：{Question}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t解决方法建议：[Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Number)]已将RFI [Attribute(Author.ShortLabel)]提交给[Attribute(OfficialResponder.ShortLabel)]，其主题和问题如下： &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：[Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t解决方法建议：[Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Number)]已将RFI [Attribute(Author.ShortLabel)]提交给[Attribute(OfficialResponder.ShortLabel)]，其主题和问题如下： &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：[Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t解决方法建议：[Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t您已被列为该RFI的二级回复者。  如果您希望提交一个回复，请在[Date(Source=Attribute,Path=DueDate)]前在Kahua中完成\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Number)]已提交了RFI [Attribute(Author.ShortLabel)]，其主题和问题如下： &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t主题：[Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t问题：[Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t解决方法建议：[Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t请在[Date(Source=Attribute,Path=DueDate)]前提交您的回复。\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">RFI [Attribute(Number)]已在[DomainPartitionName]上得到了回复</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)]已拒绝在[Attribute(Number)]上回复RFI [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)]已在[Attribute(Number)]上回复了RFI [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">在[Attribute(Number)]上提交的RFI [DomainPartitionName]已被撤回</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">在[Attribute(Number)]上针对RFI [DomainPartitionName]提交的回复</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">在[Attribute(Number)]上针对RFI [DomainPartitionName]提交的回复</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">在[Attribute(Number)]上重新提交的RFI [DomainPartitionName] </Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">在[Attribute(Number)]上提交的RFI [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">在[Attribute(Number)]上提交的RFI [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">在[Attribute(Number)]上提交的RFI [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">没有</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">官方响应人必须是一个用户</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">官方的响应为必填项</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">初级回复</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">过程</Label>\\r\\n        <Label Key=\\\"Responders\\\">响应</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">响应人的评语（不包括在最终响应中）</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">工作暂停</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">工作暂停</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">信息请求（RFIs）</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">减少</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">增加</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">没有</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">未知</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">详细的信息请求报告。</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">详细RFI报告</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">RFI详细报告</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">建筑师</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">电气</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">室内设计</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">景观</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">机械的</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">管道系统</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">结构</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">替代方案</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">澄清</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">冲突</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">信息不足</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">取消</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">确定</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">RFI报告</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">RFI报告</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">RFI报告</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">关闭</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">打开</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">延迟</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">没有</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">节省时间</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">未知</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">索取资料</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">索取资料</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">索取资料</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">分享共享</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">日期为必填项。</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">数量是必需的。</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">主题为必填项。</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">成本效应</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">日期</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">回复日期</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">截止日期</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">数字</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">官方响应人</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">建议的解决方案</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">问题</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">原因</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">参考</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">回应</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">回应</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">RFI编辑</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">新RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">信息请求</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">RFI详情</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">状态</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">主题</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">时间效应</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">类型</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">信息请求（RFIs）</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">按编号排序的RFI记录</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">按编号排序的RFI记录</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">回应者</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">按提交者分组的RFI记录</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">按提交者分组的RFI记录</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">按回应者分组的RFI记录</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">按回应者分组的RFI记录</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">按状态分组的RFI记录</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">按状态分组的RFI记录</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">提交人</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">创建日期</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">状态/行动/回应</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">逾期和今天到期</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] 由 [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] 由 [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] 由 [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] 过期计数</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] 未响应计数</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] 官方回复未回复</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] 官方回复逾期</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] 修改过去 24 小时计数</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] 今天或明天到期</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] 由 [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] 最近 30 天创建的计数</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] 过去 30 天的回复数</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] 延迟响应计数</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] 准时响应计数</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] 按创建月份</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">用户的公司被记录在案</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">类型</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">类型</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">类型</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">类型</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">设计说明</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">现有条件冲突</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">时间表说明</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">范围说明</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">RFI 参考编号 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">RFI 参考编号 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">RFI 参考编号 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">RFI 参考编号 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">自定义通用查找 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">自定义通用查找 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">自定义通用查找 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">自定义通用查找 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">自定义通用查找 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">已发送至业主</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">射频干扰日志</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">未收到 RFI 天数</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">RFI查询数据源</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"ru-RU\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Ранний/поздний ответ</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Закрыть</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">НОВЫЙ</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">РАСПЕЧАТАТЬ</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Посмотреть отчеты</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Отчеты</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">ОБМЕН...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">МЕСТО НАХОЖДЕНИЯ</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">Место нахождения</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">Инструменты управления AEC Запросами о предоставлении информации</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Назначенное лицо</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Назначенное лицо</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">RFI Запрос сведений по эффективности затрат</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Дата</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Дата</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Дата ответа</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Дата ответа</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Распределение</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Срок</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Срок</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\"> Номер RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">RFI Официальный отвечающий на запрос сведений</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Официальный отвечающий</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">RFI Предлагаемое решение</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Предлагаемое решение</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">RFI Вопрос</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Вопрос</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Причина</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Причина</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Ссылка</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Ссылка</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">RFI Отвечающие на запрос сведений</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Отвечающие</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">RFI Ответ</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Ответ</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">Вторичный ответ</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">Вторичные рецензенты</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">Вторичные рецензенты</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">Лист/Деталь№</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">Лист/Деталь №</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">RFI Статус</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">RFI Тема</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Фактор времени</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">RFI Запрос сведений по фактору времени</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">RFI Тип</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\"> RFI Рабочий процесс по запросу сведений Kahua</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">ОФИЦИАЛЬНЫЙ ОТВЕЧАЮЩИЙ</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">ОТВЕЧЕНО</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">СОСТОЯНИЕ</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Тип</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Отклонено</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">Удалить</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">Вы уверены, что хотите переместить этот объект в корзину?</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Целевые документы</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFI</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Назначенное лицо</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">ПРИСВОЕНО В ПОЛЬЗУ</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Сумма затрат</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Эффект стоимости</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">ЭФФЕКТИВНОСТЬ ЗАТРАТ</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">Создано</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">Дата</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Дата отправки</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Дата представления</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Оставшиеся дни</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Дисциплина</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Дисциплина</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Распределение</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">Закрепленные</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">ЗАКРЕПЛЕННЫЕ</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">Закрепленное название экземпляра</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">ЗАКРЕПЛЕННОЕ НАЗВАНИЕ ЭКЗЕМПЛЯРА</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">Номер</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Количество дней</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Официальный отвечающий</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">ОФИЦИАЛЬНЫЙ ОТВЕЧАЮЩИЙ</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Создатель</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">СОЗДАТЕЛЬ</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Проект</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Предлагаемое решение</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">ПРЕДЛАГАЕМОЕ РЕШЕНИЕ</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Вопрос</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">ВОПРОС</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Причина</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">ПРИЧИНА</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Ссылка</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">СПРАВКА</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Отвечающие</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">ОТВЕЧАЮЩИЕ</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">Тема</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Фактор времени</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">ФАКТОР ВРЕМЕНИ</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Исходные документы</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Строительство</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">Запрос сведений по строительству RFI</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">Запрос сведений по подготовительным строительным работам RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Подготовительные строительные работы</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Эффект стоимости</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Эффект стоимости</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Сортировать по</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Сортировать по</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Дисциплина</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Дисциплина</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Причина</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Причина</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Состояние</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Состояние</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Тип</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Тип</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Фактор времени</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Фактор времени</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Данные</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Избранные</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">Подробнее</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">Отчеты</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Добавить</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">ДОБАВИТЬ</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Создать новый элемент</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Новый запрос сведений RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Редактировать</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">РЕДАКТИРОВАТЬ</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">Новый</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Удалить</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">УДАЛИТЬ</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tПо RFI [Attribute(Number)] получен ответ от [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tОтвет: [Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] предоставлен ответ на RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tОтвет: отклонено.&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] предоставлен ответ на RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tОтвет: [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">RFI [Attribute(Number)], отправленный на [DomainPartitionListName], отозван. Этот RFI может или не может быть отправлен повторно.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tОтправлен ответ по RFI [Attribute(Number)] от [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tОтвет: [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          Отправлен ответ по RFI [Attribute(Number)] от [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n          Тема: [Attribute(Subject)]&lt;br/&gt;\\r\\n          Вопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n          Ответ: [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] отправлен повторно [Attribute(Author.ShortLabel)] в адрес [Attribute(OfficialResponder.ShortLabel)] со следующей темой и вопросом: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: {Question}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tПредлагаемое решение: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] отправлен повторно [Attribute(Author.ShortLabel)] в адрес [Attribute(OfficialResponder.ShortLabel)] со следующей темой и вопросом: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tПредлагаемое решение: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] отправлен повторно [Attribute(Author.ShortLabel)] в адрес [Attribute(OfficialResponder.ShortLabel)] со следующей темой и вопросом: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tПредлагаемое решение: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВы указаны в качестве вторичного отвечающего по этому RFI.  Если вы хотите отправить ответ, сделайте это в системе Kahua до [Date(Source=Attribute,Path=DueDate)].\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] отправлен [Attribute(Author.ShortLabel)] со следующей темой и вопросом: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tТема: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tВопрос: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tПредлагаемое решение: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tПросьба представить свой ответ до [Date(Source=Attribute,Path=DueDate)].\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">По RFI [Attribute(Number)] получен ответ от [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] отказался отвечать на RFI [Attribute(Number)] on [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] ответил на RFI [Attribute(Number)] on [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">RFI [Attribute(Number)], отправленный на [DomainPartitionName], отозван.</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">Отправлен ответ по RFI [Attribute(Number)] on [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">Отправлен ответ по RFI [Attribute(Number)] on [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">RFI [Attribute(Number)] отправлен повторно на [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">RFI [Attribute(Number)] отправлен на [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">RFI [Attribute(Number)] отправлен на [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">RFI [Attribute(Number)] отправлен на [DomainPartitionName].</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">Н/д</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">Официальный отвечающий должен быть пользователем</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">Требуется официальный ответ</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Официальный ответ</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">Обработать</Label>\\r\\n        <Label Key=\\\"Responders\\\">Отвечающие</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Комментарии отвечающих (не включены в окончательный ответ)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">Работа приостановлена</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">Работа приостановлена</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Уменьшить</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Увеличить</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">Н/д</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Неизвестно</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Детальный отчет по запросу сведений</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Подробный отчет RFI</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">RFI Детальный отчет по запросу сведений</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Архитектор</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Электричество</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">Дизайн интерьера</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Планировка</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Механический</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Водопровод</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Конструкции</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Альтернативное предложение</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Разъяснение</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Конфликт</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Недостаточно информации</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Отмена</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">ОК</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">RFI Отчет</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">RFI Отчет</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">RFI Отчет</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Закрыто</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Открыть</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Задержка</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">Н/д</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Экономия времени</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Неизвестно</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Запрос сведений</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Запрос сведений</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Запрос сведений</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">ОБМЕН</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">Требуется Дата.</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">Необходимо указать номер.</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">Требуется Тема.</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Эффект стоимости</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Дата</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Дата ответа</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Срок</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Номер</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Официальный отвечающий</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Предлагаемое решение</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Вопрос</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Причина</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Ссылка</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Ответ предоставлен</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Ответ</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">RFI Редактировать</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">Новый запрос сведений RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Запросы о предоставлении информации</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">RFI Детали запроса сведений</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Состояние</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Тема</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Фактор времени</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Тип</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">Журнал RFI, отсортированный по количеству</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">Журнал RFI, отсортированный по количеству</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Отвечающий</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">Журнал RFI, сгруппированный по отправителю</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">Журнал RFI, сгруппированный по отправителю</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">Журнал RFI, сгруппированный по отвечающему лицу</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">Журнал RFI, сгруппированный по отвечающему лицу</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">Журнал RFI, сгруппированный по статусу</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">Журнал RFI, сгруппированный по статусу</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Подающий</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Дата создания</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Статус / действие / ответ</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">Просрочено и должно быть сегодня</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] По [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] Автор [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] По [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Количество просроченных</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Количество неотвеченных сообщений</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Официальный ответчик не ответил</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] Просрочено официальным ответчиком</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] Изменено количество последних 24 часов</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] Срок выполнения сегодня или завтра</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] По [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] Количество созданных за последние 30 дней</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] Ответы за последние 30 дней</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Счетчик просроченных ответов</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] Счетчик своевременных ответов</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] по месяцу создания</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">Компания пользователя указана в записи</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Тип</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Тип</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Тип</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Тип</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Уточнение дизайна</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Существующий конфликт условий</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Уточнение расписания</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Уточнение области применения</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">Справочный номер RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">Справочный номер RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">Справочный номер RFI 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">Справочный номер RFI 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Пользовательский универсальный поиск 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Пользовательский универсальный поиск 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Пользовательский универсальный поиск 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Пользовательский универсальный поиск 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Пользовательский универсальный поиск 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">Отправлено владельцу</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">Журнал радиопомех</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">Пропущенные дни RFI</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">Источник данных запроса RFI</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"pl-PL\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Wczesna/późna odpowiedź</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Zamknij</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">NOWY</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">DRUKUJ</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Wyświetl raporty</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Raporty</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">UDOSTĘPNIANIE W TOKU...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">LOKALIZACJA</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">Lokalizacja</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">Narzędzia do zarządzania zapytaniami o informacje AEC</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Przypisane do</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Przypisane do</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">Wpływ kosztowy RFI</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Data</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Data</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Data odpowiedzi</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Data odpowiedzi</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Dystrybucja</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Data realizacji</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Data realizacji</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">Numer RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">Oficjalna osoba odpowiadająca RFI</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Oficjalna osoba odpowiadająca</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">Proponowane rozwiązanie RFI</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Proponowane rozwiązanie</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">Pytanie RFI</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Pytanie</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Przyczyna</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Przyczyna</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Odniesienie</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Odniesienie</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">Odpowiadający RFI</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Odpowiadający</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">Odpowiedź RFI</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Odpowiedź</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">Odpowiedź wtórna</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">Korektorzy pomocniczy</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">Korektorzy pomocniczy</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">Arkusz/Nr szczegółu</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">Arkusz/Nr szczegółu</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">Status RFI</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">Temat RFI</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Wpływ czasowy</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">Wpływ czasowy RFI</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">Rodzaj RFI</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Przepływ pracy RFI Kahua</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">OFICJALNA OSOBA ODPOWIADAJĄCA</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">ODPOWIEDZIANE</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">STATUS</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Typ</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Odrzucone</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">Usuń</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">Czy na pewno chcesz przenieść ten element do kosza?</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Dokumenty docelowe</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFI</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Przypisane do</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">PRZYDZIELONE DO</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Kwota kosztów</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Efekt kosztu</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">WPŁYW KOSZTOWY</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">Utworzenie przez</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">Data</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Data wysłania</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Data przesłania</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Pozostało dni</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Dziedzina</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Dziedzina</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Dystrybucja</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">Przypięte</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">PRZYPIĘTE</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">Nazwa instancji PIN</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">NAZWA INSTANCJI PIN</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">Numer</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Liczba dni</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Oficjalna osoba odpowiadająca</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">OFICJALNA OSOBA ODPOWIADAJĄCA</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Inicjator</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">INICJATOR</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Projekt</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Proponowane rozwiązanie</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">PROPONOWANE ROZWIĄZANIE</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Pytanie</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">PYTANIE</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Przyczyna</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">POWÓD</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Odniesienie</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">ODNIESIENIE</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Odpowiadający</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">ODPOWIADAJĄCY</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">Temat</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Wpływ czasowy</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">WPŁYW CZASOWY</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Dokumenty inicjujące</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Budownictwo</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">RFI - Budowa</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">RFI - Przygotowanie do budowy</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Przygotowanie do budowy</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Efekt kosztu</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Efekt kosztu</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Grupuj według</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Grupuj według</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Dziedzina</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Dziedzina</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Przyczyna</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Przyczyna</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Status</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Status</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Typ</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Typ</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Wpływ czasowy</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Wpływ czasowy</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Dane</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Ulubione</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">Więcej</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">Raporty</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Dodaj</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">DODAJ</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Utwórz nowy element</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Nowe RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Redagować</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">EDYTUJ</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">Nowy</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Usuń</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">USUŃ</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] został wskazany przez [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPytanie: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReakcja: [Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] został zgłoszony do RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tOdpowiedź: odrzucono.&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] został zgłoszony do RFI [Attribute(Number)].&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tOdpowiedź: [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">RFI [Attribute(Number)] złożone do [DomainPartitionListName] został anulowany. To RFI może lub nie może zostać wysłane ponownie.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tUdzielona została odpowiedź na RFI [Attribute(Number)] przez [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tReakcja: [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          Udzielona została odpowiedź na RFI [Attribute(Number)] przez [Attribute(OfficialResponder.ShortLabel)]:&lt;br/&gt;\\r\\n          Temat: [Attribute(Subject)]&lt;br/&gt;\\r\\n          Temat: [Attribute(Question)]&lt;br/&gt;\\r\\n          Reakcja: [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] zostało ponownie złożone [Attribute(Author.ShortLabel)] do [Attribute(OfficialResponder.ShortLabel)] wraz z poniższym tematem i pytaniem: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tPytanie: {Question}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProponowane rozwiązanie: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] zostało złożone przez [Attribute(Author.ShortLabel)] do [Attribute(OfficialResponder.ShortLabel)] wraz z poniższym tematem i pytaniem: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProponowane rozwiązanie: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] zostało złożone przez [Attribute(Author.ShortLabel)] do [Attribute(OfficialResponder.ShortLabel)] wraz z poniższym tematem i pytaniem: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProponowane rozwiązanie: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tZostałeś wymieniony jako osoba, która jako drugi odpowiadający na to RFI.  Jeśli chcesz wysłać odpowiedź, zrób to w Kahua poprzez [Date(Source=Attribute,Path=DueDate)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] zostało złożone przez [Attribute(Author.ShortLabel)] wraz z poniższym tematem i pytaniem: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tTemat: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProponowane rozwiązanie: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tProsimy przesłać swoją odpowiedź do [Date(Source=Attribute,Path=DueDate)].\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">RFI [Attribute(Number)] uzyskało odpowiedź w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] odmówił udzielenia odpowiedzi na RFI [Attribute(Number)] w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] udzielił odpowiedzi na RFI [Attribute(Number)] w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">RFI [Attribute(Number)] złożone w [DomainPartitionName] zostało wycofane</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">Udzielono odpowiedzi na RFI [Attribute(Number)] w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">Udzielono odpowiedzi na RFI [Attribute(Number)] w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">RFI [Attribute(Number)] ponownie złożone w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">RFI [Attribute(Number)] złożone w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">RFI [Attribute(Number)] złożone w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">RFI [Attribute(Number)] złożone w [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">Żadne</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">Oficjalna osoba odpowiadająca musi być użytkownikiem</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">Oficjalna odpowiedź jest wymagana</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Oficjalna odpowiedź</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">Przetwarzaj</Label>\\r\\n        <Label Key=\\\"Responders\\\">Odpowiadający</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Uwagi osób odpowiadających (nie ujęte w ostatecznej odpowiedzi)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">Praca zawieszona</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">Praca zawieszona</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Zmniejsz</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Zwiększ</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">Żadne</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Nieznane</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Szczegółowy raport zapytania o informacje (RFI).</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Szczegółowy raport RFI</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">Raport szczegółów RFI</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Architekt</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Elektryczny</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">Projekt wnętrza</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Architektura zieleni</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Mechaniczny</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Wodno-kanalizacyjny</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Strukturalny</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Propozycja alternatywna</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Wyjaśnienie</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Konflikt</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Niewystarczające informacje</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Anuluj</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">OK</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">Raport RFI</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">Raport RFI</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">Raport RFI</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Zamknięte</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Otwarte</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Opóźnienie</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">Żadne</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Oszczędność czasu</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Nieznane</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Zapytanie o informacje (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Zapytanie o informacje (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Zapytanie o informacje (RFI)</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">UDZIAŁ</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">Data jest wymagana.</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">Wymagane jest podanie numeru.</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">Temat jest wymagany.</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Efekt kosztu</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Data</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Data odpowiedzi</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Data realizacji</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Numer</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Oficjalna osoba odpowiadająca</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Proponowane rozwiązanie</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Pytanie</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Przyczyna</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Odniesienie</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Odpowiedziane</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Odpowiedź</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">Edycja RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">Nowe RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Żądanie informacji</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">Szczegóły RFI</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Status</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Temat</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Wpływ czasowy</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Typ</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">RFI Dziennik posortowany według numeru</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">RFI Dziennik posortowany według numeru</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Osoba odpowiadająca</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">RFI Dziennik zgrupowany według zgłaszającego</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">RFI Dziennik zgrupowany według zgłaszającego</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">RFI Dziennik zgrupowany przez obiekt odpowiadający</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">RFI Dziennik zgrupowany przez obiekt odpowiadający</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">RFI Dziennik zgrupowany według stanu</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">RFI Dziennik zgrupowany według stanu</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Przedkładający</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Data utworzenia</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Status / Działanie / Odpowiedź</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">Zaległe i należne dzisiaj</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] Według [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] Według [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] Według [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Liczba przeterminowanych</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Liczba nieodpowiedzianych odpowiedzi</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Brak odpowiedzi od oficjalnego respondenta</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] Zaległy przez oficjalnego respondenta</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] Zmodyfikowana liczba ostatnich 24 godzin</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] Odliczanie dzisiaj lub jutro</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] Według [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] Liczba utworzonych ostatnich 30 dni</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] Udzielono odpowiedzi w ciągu ostatnich 30 dni</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Liczba późnych odpowiedzi</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] Licznik odpowiedzi w czasie</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] według miesiąca utworzenia</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">Nazwa firmy użytkownika jest rejestrowana</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Typ</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Typ</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Typ</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Typ</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Wyjaśnienie projektu</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Istniejący konflikt warunków</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Wyjaśnienie harmonogramu</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Wyjaśnienie zakresu</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">Numer referencyjny RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">Numer referencyjny RFI 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">Numer referencyjny RFI 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">Numer referencyjny RFI 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Niestandardowe wyszukiwanie uniwersalne 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Niestandardowe wyszukiwanie uniwersalne 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Niestandardowe wyszukiwanie uniwersalne 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Niestandardowe wyszukiwanie uniwersalne 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Niestandardowe wyszukiwanie uniwersalne 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">Wysłano do właściciela</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">Dziennik RFI</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">Znakomite dni RFI</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">Źródło danych zapytania RFI</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n    <Culture Code=\\\"de-DE\\\" ImportCultures=\\\"kahua_Core,kahua_WorkflowLabels,kahua_UniversalLookup\\\">\\r\\n      <Labels>\\r\\n        <Label Key=\\\"FieldEarlyLateResponseLabel\\\">Frühe/späte Reaktion</Label>\\r\\n        <Label Key=\\\"ActionCloseLabel\\\">Schließen</Label>\\r\\n        <Label Key=\\\"ActionCreateNewRFILabelCapitalized\\\">NEU</Label>\\r\\n        <Label Key=\\\"ActionPrintDataView\\\">DRUCKEN</Label>\\r\\n        <Label Key=\\\"ActionReportLabel\\\">Berichte anzeigen</Label>\\r\\n        <Label Key=\\\"ActionReportsLabel\\\">Berichte</Label>\\r\\n        <Label Key=\\\"ActionShareWithLabelCapitalized\\\">TEILEN...</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationCapitalized\\\">ORT</Label>\\r\\n        <Label Key=\\\"AnchorSectionLocationLabel\\\">Ort</Label>\\r\\n        <Label Key=\\\"AppDescription\\\">Tools, um AEC-Informationsanfragen zu verwalten</Label>\\r\\n        <Label Key=\\\"AppLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToDescription\\\">Zuweisen an</Label>\\r\\n        <Label Key=\\\"AttributeAssignedToLabel\\\">Zuweisen an</Label>\\r\\n        <Label Key=\\\"AttributeCostEffectDescription\\\">RFI Kosteneffekt</Label>\\r\\n        <Label Key=\\\"AttributeDateDescription\\\">Datum</Label>\\r\\n        <Label Key=\\\"AttributeDateLabel\\\">Datum</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedDescription\\\">Datum reagiert</Label>\\r\\n        <Label Key=\\\"AttributeDateRespondedLabel\\\">Datum reagiert</Label>\\r\\n        <Label Key=\\\"AttributeDistributionLabel\\\">Verteilung</Label>\\r\\n        <Label Key=\\\"AttributeDueDateDescription\\\">Fälligkeitsdatum</Label>\\r\\n        <Label Key=\\\"AttributeDueDateLabel\\\">Fälligkeitsdatum</Label>\\r\\n        <Label Key=\\\"AttributeNumberDescription\\\">RFI Zahl</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderDescription\\\">RFI Offizieller Responder</Label>\\r\\n        <Label Key=\\\"AttributeOfficialResponderLabel\\\">Offizieller Responder</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionDescription\\\">RFI Lösungsvorschlag</Label>\\r\\n        <Label Key=\\\"AttributeProposedSolutionLabel\\\">Lösungsvorschlag</Label>\\r\\n        <Label Key=\\\"AttributeQuestionDescription\\\">RFI Frage</Label>\\r\\n        <Label Key=\\\"AttributeQuestionLabel\\\">Frage</Label>\\r\\n        <Label Key=\\\"AttributeReasonDescription\\\">Grund</Label>\\r\\n        <Label Key=\\\"AttributeReasonLabel\\\">Grund</Label>\\r\\n        <Label Key=\\\"AttributeReferenceDescription\\\">Referenz</Label>\\r\\n        <Label Key=\\\"AttributeReferenceLabel\\\">Referenz</Label>\\r\\n        <Label Key=\\\"AttributeRespondersDescription\\\">RFI Responder</Label>\\r\\n        <Label Key=\\\"AttributeRespondersLabel\\\">Responder</Label>\\r\\n        <Label Key=\\\"AttributeResponseDescription\\\">RFI Response</Label>\\r\\n        <Label Key=\\\"AttributeResponseLabel\\\">Antwort</Label>\\r\\n        <Label Key=\\\"AttributeResponseSecondaryLabel\\\">Zweitresponse</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersDescription\\\">Zweitgutachter</Label>\\r\\n        <Label Key=\\\"AttributeSecondaryReviewersLabel\\\">Zweitgutachter</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailDescription\\\">Blatt/Detail#</Label>\\r\\n        <Label Key=\\\"AttributeSheetDetailLabel\\\">Blatt/Detail #</Label>\\r\\n        <Label Key=\\\"AttributeStatusDescription\\\">RFI Status</Label>\\r\\n        <Label Key=\\\"AttributeSubjectDescription\\\">RFI Betreff</Label>\\r\\n        <Label Key=\\\"AttributeTimeEffectLabel\\\">Zeiteffekt</Label>\\r\\n        <Label Key=\\\"AttributeTimEffectDescription\\\">RFI Zeiteffekt</Label>\\r\\n        <Label Key=\\\"AttributeTypeDescription\\\">RFI Typ</Label>\\r\\n        <Label Key=\\\"BasicWorkflowDefLabel\\\">Kahua RFI Workflow</Label>\\r\\n        <Label Key=\\\"ControlOfficialResponderLabelCapitalized\\\">OFFIZIELLER RESPONDER</Label>\\r\\n        <Label Key=\\\"ControlRespondedLabelCapitalized\\\">REAGIERT</Label>\\r\\n        <Label Key=\\\"ControlStatusLabelCapitalized\\\">STATUS</Label>\\r\\n        <Label Key=\\\"ControlTypeHeaderLabel\\\">Art</Label>\\r\\n        <Label Key=\\\"DeclinedLabel\\\">Abgelehnt</Label>\\r\\n        <Label Key=\\\"DeleteConfirmationCaption\\\">Löschen</Label>\\r\\n        <Label Key=\\\"DeleteConformationDetail\\\">Diesen Artikel wirklich in den Papierkorb verschieben?</Label>\\r\\n        <Label Key=\\\"DestinationDocumentsLabel\\\">Zieldokumente</Label>\\r\\n        <Label Key=\\\"EntityDefLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbv\\\">RFI</Label>\\r\\n        <Label Key=\\\"EntityDefLabelAbbvPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"EntityDefLabelPlural\\\">RFIs</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabel\\\">Zuweisen an</Label>\\r\\n        <Label Key=\\\"FieldAssignedToLabelCapitalized\\\">ZUGEWIESEN AN</Label>\\r\\n        <Label Key=\\\"FieldCostAmountLabel\\\">Kostenbetrag</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabel\\\">Kosteneffekt</Label>\\r\\n        <Label Key=\\\"FieldCostEffectLabelCapitalized\\\">KOSTENEFFEKT</Label>\\r\\n        <Label Key=\\\"FieldCreatedByLabel\\\">Erstellt von</Label>\\r\\n        <Label Key=\\\"FieldDateLabel\\\">Datum</Label>\\r\\n        <Label Key=\\\"FieldDateSentLabel\\\">Gesendet am</Label>\\r\\n        <Label Key=\\\"FieldDateSubmittedLabel\\\">Einreichungsdatum</Label>\\r\\n        <Label Key=\\\"FieldDaysOutstandingLabel\\\">Ausstehende Tage</Label>\\r\\n        <Label Key=\\\"FieldDisciplineDescription\\\">Disziplin</Label>\\r\\n        <Label Key=\\\"FieldDisciplineLabel\\\">Disziplin</Label>\\r\\n        <Label Key=\\\"FieldDistributionLabel\\\">Verteilung</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabel\\\">Gepinnt</Label>\\r\\n        <Label Key=\\\"FieldIsPinnedLabelCapitalized\\\">GEPINNT</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabel\\\">Pin Instanzname</Label>\\r\\n        <Label Key=\\\"FieldModelInstanceNameLabelCapitalized\\\">PIN Instanzname</Label>\\r\\n        <Label Key=\\\"FieldNumberLabel\\\">Nummer</Label>\\r\\n        <Label Key=\\\"FieldNumberOfDaysLabel\\\">Anzahl der Tage</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabel\\\">Offizieller Responder</Label>\\r\\n        <Label Key=\\\"FieldOfficialResponderLabelCapitalized\\\">OFFIZIELLER RESPONDER</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabel\\\">Urheber</Label>\\r\\n        <Label Key=\\\"FieldOriginatorLabelCapitalized\\\">URHEBER</Label>\\r\\n        <Label Key=\\\"FieldProjectLabel\\\">Projekt</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabel\\\">Lösungsvorschlag</Label>\\r\\n        <Label Key=\\\"FieldProposedSolutionLabelCapitalized\\\">LÖSUNGSVORSCHLAG</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabel\\\">Frage</Label>\\r\\n        <Label Key=\\\"FieldQuestionLabelCapitalized\\\">FRAGE</Label>\\r\\n        <Label Key=\\\"FieldReasonLabel\\\">Grund</Label>\\r\\n        <Label Key=\\\"FieldReasonLabelCapitalized\\\">GRUND</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabel\\\">Referenz</Label>\\r\\n        <Label Key=\\\"FieldReferenceLabelCapitalized\\\">REFERENZ</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabel\\\">Responder</Label>\\r\\n        <Label Key=\\\"FieldRespondersLabelCapitalized\\\">RESPONDER</Label>\\r\\n        <Label Key=\\\"FieldSubjectLabel\\\">Thema</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabel\\\">Zeiteffekt</Label>\\r\\n        <Label Key=\\\"FieldTimeEffectLabelCapitalized\\\">ZEITEFFEKT</Label>\\r\\n        <Label Key=\\\"InitiatingDocumentsLabel\\\">Dokument werden initiiert</Label>\\r\\n        <Label Key=\\\"ListConstructionLabel\\\">Konstruktion</Label>\\r\\n        <Label Key=\\\"ListItemConstructionLabel\\\">Bau RFI</Label>\\r\\n        <Label Key=\\\"ListItemPreConstructionLabel\\\">Bauvorbereitungen RFI</Label>\\r\\n        <Label Key=\\\"ListPreConstructionLabel\\\">Bauvorbereitungen</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectDescription\\\">Kosteneffekt</Label>\\r\\n        <Label Key=\\\"LookupListCostEffectLabel\\\">Kosteneffekt</Label>\\r\\n        <Label Key=\\\"LookupListGroupByDescription\\\">Gruppieren nach</Label>\\r\\n        <Label Key=\\\"LookupListGroupByLabel\\\">Gruppieren nach</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineDescription\\\">Disziplin</Label>\\r\\n        <Label Key=\\\"LookupListRFIDisciplineLabel\\\">Disziplin</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonDescription\\\">Grund</Label>\\r\\n        <Label Key=\\\"LookupListRFIReasonLabel\\\">Grund</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusDescription\\\">Status</Label>\\r\\n        <Label Key=\\\"LookupListRFIStatusLabel\\\">Status</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeDescription\\\">Art</Label>\\r\\n        <Label Key=\\\"LookupListRFITypeLabel\\\">Art</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectDescription\\\">Zeiteffekt</Label>\\r\\n        <Label Key=\\\"LookupListTimeEffectLabel\\\">Zeiteffekt</Label>\\r\\n        <Label Key=\\\"MenuGroupDataLabel\\\">Daten</Label>\\r\\n        <Label Key=\\\"MenuGroupFavoritesLabel\\\">Favoriten</Label>\\r\\n        <Label Key=\\\"MenuGroupMoreLabel\\\">Mehr</Label>\\r\\n        <Label Key=\\\"MenuGroupReportsLabel\\\">Berichte</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabel\\\">Hinzufügen</Label>\\r\\n        <Label Key=\\\"MenuItemAddShareLabelCapitalized\\\">HINZUFÜGEN</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewItemLabel\\\">Neues Element erstellen</Label>\\r\\n        <Label Key=\\\"MenuItemCreateNewRFILabel\\\">Neue RFI</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabel\\\">Bearbeiten</Label>\\r\\n        <Label Key=\\\"MenuItemEditShareLabelCapitalized\\\">BEARBEITEN</Label>\\r\\n        <Label Key=\\\"MenuItemNewLabel\\\">Neu</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabel\\\">Entfernen</Label>\\r\\n        <Label Key=\\\"MenuItemRemoveShareLabelCapitalized\\\">ENTFERNEN</Label>\\r\\n        <Label Key=\\\"MenuItemRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"MessageBody_AuthorNotice\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] wurde von [Attribute(OfficialResponder.ShortLabel)] beantwortet:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAntwort: [Attribute(Response)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderDecline\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] hat RFI [Attribute(Number)] geantwortet.&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAntwort: Abgelehnt.&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_OfficialResponderResponse\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t[Attribute(Task_To)] hat RFI [Attribute(Number)] geantwortet.&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAntwort: [Attribute(ResponseSecondary)]&lt;br/&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_Recalled\\\">RFI [Attribute(Number)] eingereicht am [DomainPartitionListName] wurde erfolgreich abgerufen. Diese RFI kann oder kann nicht erneut eingereicht werden.</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmitted\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tEine Antwort wurde für RFI [Attribute(Number)] von [Attribute(OfficialResponder.ShortLabel)] eingereicht:&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tAntwort: [Attribute(Response)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_ResponseSubmittedDistribution\\\">          Eine Antwort wurde für RFI [Attribute(Number)] von [Attribute(OfficialResponder.ShortLabel)] eingereicht:&lt;br/&gt;\\r\\n          Thema: [Attribute(Subject)]&lt;br/&gt;\\r\\n          Frage: [Attribute(Question)]&lt;br/&gt;\\r\\n          Antwort: [Attribute(Response)]&lt;br/&gt;\\r\\n          &lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_ResubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] wurde von [Attribute(Author.ShortLabel)] an [Attribute(OfficialResponder.ShortLabel)] mit folgendem Thema und Frage erneut vorgelegt: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: {Frage}&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tVorgeschlagene Lösung: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedDistribution\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] wurde von [Attribute(Author.ShortLabel)] an [Attribute(OfficialResponder.ShortLabel)] mit folgendem Thema und Frage vorgelegt: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tVorgeschlagene Lösung: [Attribute(ProposedSolution)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;[NavigateLink(Target=Source)]&lt;/p&gt;\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedSecondary\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] wurde von [Attribute(Author.ShortLabel)] an [Attribute(OfficialResponder.ShortLabel)] mit folgendem Thema und Frage vorgelegt: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tVorgeschlagene Lösung: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tSie wurden auf dieser RFI als Zweitresponder aufgeführt.  Wenn Sie eine Antwort einreichen möchten, tun Sie dies bitte in Kahua durch [Date(Source=Attribute,Path=DueDate)]\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t&lt;p&gt;&lt;/p&gt;</Label>\\r\\n        <Label Key=\\\"MessageBody_SubmittedTask\\\">\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tRFI [Attribute(Number)] wurde von [Attribute(Author.ShortLabel)] mit folgendem Thema und Frage vorgelegt: &lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tThema: [Attribute(Subject)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tFrage: [Attribute(Question)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tVorgeschlagene Lösung: [Attribute(ProposedSolution)]&lt;br/&gt;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tBitte senden Sie Ihre Antwort durch [Date(Source=Attribute,Path=DueDate)].\\r\\n</Label>\\r\\n        <Label Key=\\\"MessageSubject_AuthorNotice\\\">RFI [Attribute(Number)] hat auf [DomainPartitionName] angesprochen</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderDecline\\\">[Attribute(Task_To)] hat es abgelehnt, auf RFI [Attribute(Number)] auf [DomainPartitionName] anzusprechen</Label>\\r\\n        <Label Key=\\\"MessageSubject_OfficialResponderResponse\\\">[Attribute(Task_To)] hat auf RFI [Attribute(Number)] auf [DomainPartitionName] angesprochen</Label>\\r\\n        <Label Key=\\\"MessageSubject_Recalled\\\">RFI [Attribute(Number)] eingereicht am [DomainPartitionName] wurde erfolgreich abgerufen</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmitted\\\">Antwort eingereicht für RFI [Attribute(Number)] auf [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResponseSubmittedDistribution\\\">Antwort eingereicht für RFI [Attribute(Number)] auf [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_ResubmittedDistribution\\\">RFI [Attribute(Number)] erneut eingereicht am [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedDistribution\\\">RFI [Attribute(Number)] eingereicht am [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedSecondary\\\">RFI [Attribute(Number)] eingereicht am [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"MessageSubject_SubmittedTask\\\">RFI [Attribute(Number)] eingereicht am [DomainPartitionName]</Label>\\r\\n        <Label Key=\\\"NoneLabel\\\">Keine</Label>\\r\\n        <Label Key=\\\"OfficialResponderContactRequiredDetail\\\">Offizieller Responder muss ein User sein</Label>\\r\\n        <Label Key=\\\"OfficialResponderResponseRequiredDetail\\\">Offizielle Response ist erforderlich</Label>\\r\\n        <Label Key=\\\"OfficialResponseLabel\\\">Offizielle Response</Label>\\r\\n        <Label Key=\\\"ProcessLabel\\\">Verarbeiten</Label>\\r\\n        <Label Key=\\\"Responders\\\">Responder</Label>\\r\\n        <Label Key=\\\"RespondersCommentsLabel\\\">Responder-Anmerkungen (nicht in endgültiger Response enthalten)</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedDescription\\\">Arbeit ausgesetzt</Label>\\r\\n        <Label Key=\\\"RFI_WorkSuspendedLabel\\\">Arbeit ausgesetzt</Label>\\r\\n        <Label Key=\\\"RFIAppNameLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFICostEffectDecrease\\\">Verringern</Label>\\r\\n        <Label Key=\\\"RFICostEffectIncrease\\\">Erhöhen</Label>\\r\\n        <Label Key=\\\"RFICostEffectNone\\\">Keine</Label>\\r\\n        <Label Key=\\\"RFICostEffectUnknown\\\">Unbekannt</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportDesc\\\">Detaillierter Informationsanfrage-Bericht.</Label>\\r\\n        <Label Key=\\\"RFIDetailedReportLabel\\\">Detaillierter RFI-Bericht</Label>\\r\\n        <Label Key=\\\"RFIDetailReportTitle\\\">RFI Detailbericht</Label>\\r\\n        <Label Key=\\\"RFIDisciplineArchitect\\\">Architekt</Label>\\r\\n        <Label Key=\\\"RFIDisciplineElectrical\\\">Elektrisch</Label>\\r\\n        <Label Key=\\\"RFIDisciplineInteriorDesign\\\">Innendesign</Label>\\r\\n        <Label Key=\\\"RFIDisciplineLandscape\\\">Landschaft</Label>\\r\\n        <Label Key=\\\"RFIDisciplineMechanical\\\">Mechanisch</Label>\\r\\n        <Label Key=\\\"RFIDisciplinePlumbing\\\">Klempnerarbeit</Label>\\r\\n        <Label Key=\\\"RFIDisciplineStructural\\\">Strukturell</Label>\\r\\n        <Label Key=\\\"RFIMenuLabel\\\">RFI</Label>\\r\\n        <Label Key=\\\"RFIReasonAlternateProposal\\\">Alternativer Vorschlag</Label>\\r\\n        <Label Key=\\\"RFIReasonClarification\\\">Klärung</Label>\\r\\n        <Label Key=\\\"RFIReasonConflict\\\">Konflikt</Label>\\r\\n        <Label Key=\\\"RFIReasonInsufficientInformation\\\">Unzureichende Information</Label>\\r\\n        <Label Key=\\\"RFIReExportCancelButton\\\">Stornieren</Label>\\r\\n        <Label Key=\\\"RFIReExportOKButton\\\">OK</Label>\\r\\n        <Label Key=\\\"RFIReportDesc\\\">RFI Bericht</Label>\\r\\n        <Label Key=\\\"RFIReportLabel\\\">RFI Bericht</Label>\\r\\n        <Label Key=\\\"RFIReportTitle\\\">RFI Bericht</Label>\\r\\n        <Label Key=\\\"RFIStatusClosed\\\">Abgeschlossen</Label>\\r\\n        <Label Key=\\\"RFIStatusOpen\\\">Öffnen</Label>\\r\\n        <Label Key=\\\"RFITimeEffectDelay\\\">Verzögerung</Label>\\r\\n        <Label Key=\\\"RFITimeEffectNone\\\">Keine</Label>\\r\\n        <Label Key=\\\"RFITimeEffectTimeSavings\\\">Zeitersparnis</Label>\\r\\n        <Label Key=\\\"RFITimeEffectUnknown\\\">Unbekannt</Label>\\r\\n        <Label Key=\\\"RFIViewLabel\\\">Informationsanforderung (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportDescription\\\">Informationsanforderung (RFI)</Label>\\r\\n        <Label Key=\\\"RFIViewReportLabel\\\">Informationsanforderung (RFI)</Label>\\r\\n        <Label Key=\\\"ShareUpperCase\\\">TEILEN</Label>\\r\\n        <Label Key=\\\"Validation_DateRequired\\\">Datum ist erforderlich.</Label>\\r\\n        <Label Key=\\\"Validation_NumberRequired\\\">Nummer ist erforderlich.</Label>\\r\\n        <Label Key=\\\"Validation_SubjectRequired\\\">Betreff ist erforderlich.</Label>\\r\\n        <Label Key=\\\"ViewCostEffectControl\\\">Kosteneffekt</Label>\\r\\n        <Label Key=\\\"ViewDateControl\\\">Datum</Label>\\r\\n        <Label Key=\\\"ViewDateRespondedControl\\\">Datum reagiert</Label>\\r\\n        <Label Key=\\\"ViewDueDateControl\\\">Fälligkeitsdatum</Label>\\r\\n        <Label Key=\\\"ViewNumberControl\\\">Nummer</Label>\\r\\n        <Label Key=\\\"ViewOfficialResponderControl\\\">Offizieller Responder</Label>\\r\\n        <Label Key=\\\"ViewProposedSolutionControl\\\">Lösungsvorschlag</Label>\\r\\n        <Label Key=\\\"ViewQuestionControl\\\">Frage</Label>\\r\\n        <Label Key=\\\"ViewReasonControl\\\">Grund</Label>\\r\\n        <Label Key=\\\"ViewReferenceControl\\\">Referenz</Label>\\r\\n        <Label Key=\\\"ViewRespondedControl\\\">Geantwortet</Label>\\r\\n        <Label Key=\\\"ViewResponseControl\\\">Antwort</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewLabel\\\">RFI bearbeiten</Label>\\r\\n        <Label Key=\\\"ViewRFIEditViewTitle\\\">Neue RFI</Label>\\r\\n        <Label Key=\\\"ViewRFIListViewLabel\\\">Informationsanfragen (RFIs)</Label>\\r\\n        <Label Key=\\\"ViewRFIPreviewLabel\\\">RFI Details</Label>\\r\\n        <Label Key=\\\"ViewStatusControl\\\">Status</Label>\\r\\n        <Label Key=\\\"ViewSubjectControl\\\">Thema</Label>\\r\\n        <Label Key=\\\"ViewTimeEffectControl\\\">Zeiteffekt</Label>\\r\\n        <Label Key=\\\"ViewTypeControl\\\">Art</Label>\\r\\n        <Label Key=\\\"WorkspaceRFIsLabel\\\">RFIs</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberLabel\\\">RFI Protokoll sortiert nach Nummer</Label>\\r\\n        <Label Key=\\\"RFILogSortedByNumberDesc\\\">RFI Protokoll sortiert nach Nummer</Label>\\r\\n        <Label Key=\\\"FieldResponderLabel\\\">Responder</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterLabel\\\">RFI Protokoll gruppiert nach Absender</Label>\\r\\n        <Label Key=\\\"RFILogGroupedBySubmitterDesc\\\">RFI Protokoll gruppiert nach Absender</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderLabel\\\">RFI Protokoll gruppiert nach Antwortenden</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByResponderDesc\\\">RFI Protokoll gruppiert nach Antwortenden</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusLabel\\\">RFI Protokoll gruppoert nach Status</Label>\\r\\n        <Label Key=\\\"RFILogGroupedByStatusDesc\\\">RFI Protokoll gruppoert nach Status</Label>\\r\\n        <Label Key=\\\"FieldSubmitterLabel\\\">Übermittler</Label>\\r\\n        <Label Key=\\\"FieldDateCreatedLabel\\\">Erstellungsdatum</Label>\\r\\n        <Label Key=\\\"FieldStatusActionResponseLabel\\\">Status / Aktion / Antwort</Label>\\r\\n        <Label Key=\\\"DataViewDueOverdueLabel\\\">Überfällig und heute fällig</Label>\\r\\n        <Label Key=\\\"FeedRFIsByStatusLabel\\\">[AppLabel] Von [FieldStatusLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByReasonLabel\\\">[AppLabel] Von [FieldReasonLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsByCostEffectLabel\\\">[AppLabel] Von [FieldCostEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsCountLabel\\\">[AppLabel] Überfällige Anzahl</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsCountLabel\\\">[AppLabel] Unbeantwortete Anzahl</Label>\\r\\n        <Label Key=\\\"FeedUnrespondedRFIsByOfficial\\\">[AppLabel] Von offiziellem Responder unbeantwortet</Label>\\r\\n        <Label Key=\\\"FeedOverdueRFIsByOfficial\\\">[AppLabel] Von offiziellem Responder überfällig</Label>\\r\\n        <Label Key=\\\"FeedRFIsModifiedPast24HoursCountLabel\\\">[AppLabel] Modifizierter 24-Stunden-Zähler</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponseDueNextDayLabel\\\">[AppLabel] Anzahl heute oder morgen fällig</Label>\\r\\n        <Label Key=\\\"FeedRFIsByTimeEffectLabel\\\">[AppLabel] Von [FieldTimeEffectLabel]</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreated30DaysLabel\\\">[AppLabel] In den letzten 30 Tagen erstellte Anzahl</Label>\\r\\n        <Label Key=\\\"FeedRFIsResponded30DaysLabel\\\">[AppLabel] In den letzten 30 Tagen beantwortete Anzahl</Label>\\r\\n        <Label Key=\\\"FeedRFIsLateResponseCountLabel\\\">[AppLabel] Verspätete Antwort Anzahl</Label>\\r\\n        <Label Key=\\\"FeedRFIsOnTimeResponseCountLabel\\\">[AppLabel] Anzahl rechtzeitige Antwort</Label>\\r\\n        <Label Key=\\\"FeedRFIsCreatedByMonthLabel\\\">[AppLabel] nach Erstellungsmonat</Label>\\r\\n        <Label Key=\\\"PermissionFilterNamedOnRecord\\\">Das Unternehmen des Benutzers wird aktenkundig genannt</Label>\\r\\n        <Label Key=\\\"RFI_TypeLabel\\\">Art</Label>\\r\\n        <Label Key=\\\"RFI_TypeDescription\\\">Art</Label>\\r\\n        <Label Key=\\\"LookupListTypeLabel\\\">Art</Label>\\r\\n        <Label Key=\\\"LookupListTypeDescription\\\">Art</Label>\\r\\n        <Label Key=\\\"RFITypeDesignClarification\\\">Design-Klärung</Label>\\r\\n        <Label Key=\\\"RFITypeExistingConditionConflict\\\">Bestehender Bedingungskonflikt</Label>\\r\\n        <Label Key=\\\"RFITypeScheduleClarification\\\">Terminklärung</Label>\\r\\n        <Label Key=\\\"RFITypeScopeClarification\\\">Klärung des Geltungsbereichs</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Label\\\">RFI-Referenznummer 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber1Description\\\">RFI-Referenznummer 1</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Label\\\">RFI-Referenznummer 2</Label>\\r\\n        <Label Key=\\\"RFI_RFIReferenceNumber2Description\\\">RFI-Referenznummer 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup1Label\\\">Benutzerdefinierte universelle Suche 1</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup2Label\\\">Benutzerdefinierte universelle Suche 2</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup3Label\\\">Benutzerdefinierte universelle Suche 3</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup4Label\\\">Benutzerdefinierte universelle Suche 4</Label>\\r\\n        <Label Key=\\\"FieldUniversalLookup5Label\\\">Benutzerdefinierte universelle Suche 5</Label>\\r\\n        <Label Key=\\\"FieldSentToOwnerDateLabel\\\">An Inhaber gesendet</Label>\\r\\n        <Label Key=\\\"RFILogReportTitle\\\">RFI-Protokoll</Label>\\r\\n        <Label Key=\\\"RFILogReportDescription\\\">Hervorragende RFI-Tage</Label>\\r\\n        <Label Key=\\\"RFIQueryDataSourceLabel\\\">RFI-Abfragedatenquelle</Label>\\r\\n      </Labels>\\r\\n    </Culture>\\r\\n  </Cultures>\\r\\n  <DataTags>\\r\\n    <DataTag Name=\\\"PortableViewTemplate\\\" Label=\\\"[PortableViewTemplate]\\\" CultureLabelKey=\\\"PortableViewTemplate\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldNumberLabel\\\" Label=\\\"[FieldNumberLabel]\\\" CultureLabelKey=\\\"FieldNumberLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldDateLabel\\\" Label=\\\"[FieldDateLabel]\\\" CultureLabelKey=\\\"FieldDateLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldSubjectLabel\\\" Label=\\\"[FieldSubjectLabel]\\\" CultureLabelKey=\\\"FieldSubjectLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldStatusLabel\\\" Label=\\\"[FieldStatusLabel]\\\" CultureLabelKey=\\\"FieldStatusLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldAuthorLabel\\\" Label=\\\"[FieldAuthorLabel]\\\" CultureLabelKey=\\\"FieldAuthorLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldCSICodeLabel\\\" Label=\\\"[FieldCSICodeLabel]\\\" CultureLabelKey=\\\"FieldCSICodeLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldCostEffectLabel\\\" Label=\\\"[FieldCostEffectLabel]\\\" CultureLabelKey=\\\"FieldCostEffectLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldReasonLabel\\\" Label=\\\"[FieldReasonLabel]\\\" CultureLabelKey=\\\"FieldReasonLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldTimeEffectLabel\\\" Label=\\\"[FieldTimeEffectLabel]\\\" CultureLabelKey=\\\"FieldTimeEffectLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldNumberOfDaysLabel\\\" Label=\\\"[FieldNumberOfDaysLabel]\\\" CultureLabelKey=\\\"FieldNumberOfDaysLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldCostAmountLabel\\\" Label=\\\"[FieldCostAmountLabel]\\\" CultureLabelKey=\\\"FieldCostAmountLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldReferenceLabel\\\" Label=\\\"[FieldReferenceLabel]\\\" CultureLabelKey=\\\"FieldReferenceLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldQuestionLabel\\\" Label=\\\"[FieldQuestionLabel]\\\" CultureLabelKey=\\\"FieldQuestionLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldProposedSolutionLabel\\\" Label=\\\"[FieldProposedSolutionLabel]\\\" CultureLabelKey=\\\"FieldProposedSolutionLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldRespondersLabel\\\" Label=\\\"[FieldRespondersLabel]\\\" CultureLabelKey=\\\"FieldRespondersLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"Responders\\\" Label=\\\"[Responders]\\\" CultureLabelKey=\\\"Responders\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldOfficialResponderLabel\\\" Label=\\\"[FieldOfficialResponderLabel]\\\" CultureLabelKey=\\\"FieldOfficialResponderLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldDateSentLabel\\\" Label=\\\"[FieldDateSentLabel]\\\" CultureLabelKey=\\\"FieldDateSentLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldDueDateLabel\\\" Label=\\\"[FieldDueDateLabel]\\\" CultureLabelKey=\\\"FieldDueDateLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldDateRespondedLabel\\\" Label=\\\"[FieldDateRespondedLabel]\\\" CultureLabelKey=\\\"FieldDateRespondedLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldResponseLabel\\\" Label=\\\"[FieldResponseLabel]\\\" CultureLabelKey=\\\"FieldResponseLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldLocationLabel\\\" Label=\\\"[FieldLocationLabel]\\\" CultureLabelKey=\\\"FieldLocationLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldNotesLabel\\\" Label=\\\"[FieldNotesLabel]\\\" CultureLabelKey=\\\"FieldNotesLabel\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"AnchorSectionReferencesLabel\\\" Label=\\\"[AnchorSectionReferencesLabel]\\\" CultureLabelKey=\\\"AnchorSectionReferencesLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldSearchLabel\\\" Label=\\\"[FieldSearchLabel]\\\" CultureLabelKey=\\\"FieldSearchLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldAssignedToLabel\\\" Label=\\\"[FieldAssignedToLabel]\\\" CultureLabelKey=\\\"FieldAssignedToLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldDistributionLabel\\\" Label=\\\"[FieldDistributionLabel]\\\" CultureLabelKey=\\\"FieldDistributionLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldCreatedByLabel\\\" Label=\\\"[FieldCreatedByLabel]\\\" CultureLabelKey=\\\"FieldCreatedByLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"InitiatingDocumentsLabel\\\" Label=\\\"[InitiatingDocumentsLabel]\\\" CultureLabelKey=\\\"InitiatingDocumentsLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"DestinationDocumentsLabel\\\" Label=\\\"[DestinationDocumentsLabel]\\\" CultureLabelKey=\\\"DestinationDocumentsLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldDaysOutstandingLabel\\\" Label=\\\"[FieldDaysOutstandingLabel]\\\" CultureLabelKey=\\\"FieldDaysOutstandingLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldDisciplineLabel\\\" Label=\\\"[FieldDisciplineLabel]\\\" CultureLabelKey=\\\"FieldDisciplineLabel\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"RFI_WorkSuspended\\\" Label=\\\"[RFI_WorkSuspendedLabel]\\\" CultureLabelKey=\\\"RFI_WorkSuspendedLabel\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"AnchorSectionMediaLabel\\\" Label=\\\"[AnchorSectionMediaLabel]\\\" CultureLabelKey=\\\"AnchorSectionMediaLabel\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"RFI_Type\\\" Label=\\\"[RFI_TypeLabel]\\\" CultureLabelKey=\\\"RFI_TypeLabel\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"RFI_RFIReferenceNumber1\\\" Label=\\\"[RFI_RFIReferenceNumber1Label]\\\" CultureLabelKey=\\\"RFI_RFIReferenceNumber1Label\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"RFI_RFIReferenceNumber2\\\" Label=\\\"[RFI_RFIReferenceNumber2Label]\\\" CultureLabelKey=\\\"RFI_RFIReferenceNumber2Label\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldUniversalLookup1Label\\\" Label=\\\"[FieldUniversalLookup1Label]\\\" CultureLabelKey=\\\"FieldUniversalLookup1Label\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldUniversalLookup2Label\\\" Label=\\\"[FieldUniversalLookup2Label]\\\" CultureLabelKey=\\\"FieldUniversalLookup2Label\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldUniversalLookup3Label\\\" Label=\\\"[FieldUniversalLookup3Label]\\\" CultureLabelKey=\\\"FieldUniversalLookup3Label\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldUniversalLookup4Label\\\" Label=\\\"[FieldUniversalLookup4Label]\\\" CultureLabelKey=\\\"FieldUniversalLookup4Label\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n    <DataTag Name=\\\"FieldUniversalLookup5Label\\\" Label=\\\"[FieldUniversalLookup5Label]\\\" CultureLabelKey=\\\"FieldUniversalLookup5Label\\\" IsVisible=\\\"False\\\">\\r\\n      <Key />\\r\\n    </DataTag>\\r\\n  </DataTags>\\r\\n  <App.DataSources>\\r\\n    <LegacyDataSource type=\\\"Legacy\\\" Name=\\\"RFIData\\\">\\r\\n      <LegacyDataSource.DataSourceXml Name=\\\"RFIData\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read|Write\\\">\\r\\n        <Parameters>\\r\\n          <Parameter Name=\\\"Id\\\" />\\r\\n        </Parameters>\\r\\n        <Select>\\r\\n          <Attribute Name=\\\"RFI.Attachments\\\" SelectTemplate=\\\"kahua_Core.CurrentFile\\\" />\\r\\n          <Attribute Name=\\\"RFI.Author\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRef\\\" />\\r\\n          <Attribute Name=\\\"RFI.Author.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.NumberOfDays\\\" DataType=\\\"Integer\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostAmount\\\" DataType=\\\"Currency\\\" />\\r\\n          <Attribute Name=\\\"RFI.Date\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateResponded\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DueDate\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateSent\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.Id\\\" />\\r\\n          <Attribute Name=\\\"RFI.CSICode\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_AEC_CSICode.CSICodeForRef\\\" />\\r\\n          <Attribute Name=\\\"RFI.Location\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_Location.LocationForRefWithAddress\\\" />\\r\\n          <Attribute Name=\\\"RFI.Number\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.OfficialResponder\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRef\\\" />\\r\\n          <Attribute Name=\\\"RFI.OfficialResponder.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n          <Attribute Name=\\\"RFI.Responders\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRefPlus\\\" />\\r\\n          <Attribute Name=\\\"RFI.ProposedSolution\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Question\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reason\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reference\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Response\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Status\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Subject\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.TimeEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.OutwardReferences\\\" SelectTemplate=\\\"kahua_Reference.Reference\\\" />\\r\\n          <Attribute Name=\\\"RFI.Discipline\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup1\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup2\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup3\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup4\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup5\\\" DataType=\\\"Lookup\\\" />\\r\\n        </Select>\\r\\n        <From>\\r\\n          <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n        </From>\\r\\n        <Where>\\r\\n          <Attribute Name=\\\"RFI.Id\\\" ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n            <Equals Parameter=\\\"Id\\\" />\\r\\n          </Attribute>\\r\\n        </Where>\\r\\n      </LegacyDataSource.DataSourceXml>\\r\\n    </LegacyDataSource>\\r\\n    <LegacyDataSource type=\\\"Legacy\\\" Name=\\\"RFIListData\\\">\\r\\n      <LegacyDataSource.DataSourceXml Name=\\\"RFIListData\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\">\\r\\n        <Select>\\r\\n          <Attribute Name=\\\"RFI.Id\\\" />\\r\\n          <Attribute Name=\\\"RFI.CreatedBy.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n          <Attribute Name=\\\"RFI.Attachments\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_Core.CurrentFile\\\" />\\r\\n          <Attribute Name=\\\"RFI.Author.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostAmount\\\" DataType=\\\"Currency\\\" />\\r\\n          <Attribute Name=\\\"RFI.NumberOfDays\\\" DataType=\\\"Integer\\\" />\\r\\n          <Attribute Name=\\\"RFI.CSICode.Code\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateResponded\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DueDate\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateSent\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.Date\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.Location.Description\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Number\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.OfficialResponder.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n          <Attribute Name=\\\"RFI.ProposedSolution\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Question\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reason\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reference\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Responders.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n          <Attribute Name=\\\"RFI.Response\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Subject\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Status\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.TimeEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.OutwardReferences\\\" SelectTemplate=\\\"kahua_Reference.Reference\\\" />\\r\\n          <Attribute Name=\\\"RFI.Discipline\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup1\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup2\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup3\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup4\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup5\\\" DataType=\\\"Lookup\\\" />\\r\\n        </Select>\\r\\n        <From>\\r\\n          <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n        </From>\\r\\n        <Order>\\r\\n          <Attribute Name=\\\"RFI.Number\\\" Direction=\\\"DESC\\\" />\\r\\n        </Order>\\r\\n      </LegacyDataSource.DataSourceXml>\\r\\n    </LegacyDataSource>\\r\\n    <LegacyDataSource type=\\\"Legacy\\\" Name=\\\"RFIListDataExport\\\">\\r\\n      <LegacyDataSource.DataSourceXml Name=\\\"RFIListDataExport\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read|Write\\\">\\r\\n        <Select>\\r\\n          <Attribute Name=\\\"RFI.Author\\\" DataType=\\\"Entity\\\">\\r\\n            <Attributes>\\r\\n              <Attribute Name=\\\"Author.EmailAddress\\\" DataType=\\\"EmailAddress\\\" />\\r\\n              <Attribute Name=\\\"Author.FirstName\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"Author.LastName\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"Author.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n              <Attribute Name=\\\"Author.Company\\\" DataType=\\\"Entity\\\">\\r\\n                <Attributes>\\r\\n                  <Attribute Name=\\\"Company.Name\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Company.Website\\\" DataType=\\\"Url\\\" />\\r\\n                  <Attribute Name=\\\"Company.CompanyEmail\\\" DataType=\\\"EmailAddress\\\" />\\r\\n                  <Attribute Name=\\\"Company.LegalName\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Company.CompanyOverview\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Company.CompanyEntryType\\\" DataType=\\\"Lookup\\\" />\\r\\n                  <Attribute Name=\\\"Company.GovernmentId\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Company.VendorNumber\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Company.Twitter\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Company.Facebook\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Company.LinkedIn\\\" DataType=\\\"Text\\\" />\\r\\n                </Attributes>\\r\\n              </Attribute>\\r\\n            </Attributes>\\r\\n          </Attribute>\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CSICode\\\" DataType=\\\"Entity\\\">\\r\\n            <Attributes>\\r\\n              <Attribute Name=\\\"CSICode.Code\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"CSICode.Description\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"CSICode.Parent\\\" DataType=\\\"Entity\\\">\\r\\n                <Attributes>\\r\\n                  <Attribute Name=\\\"Parent.Code\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Parent.Description\\\" DataType=\\\"Text\\\" />\\r\\n                </Attributes>\\r\\n              </Attribute>\\r\\n            </Attributes>\\r\\n          </Attribute>\\r\\n          <Attribute Name=\\\"RFI.Date\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateResponded\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DueDate\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateSent\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.Location\\\" DataType=\\\"Entity\\\">\\r\\n            <Attributes>\\r\\n              <Attribute Name=\\\"Location.Parent\\\" DataType=\\\"Entity\\\">\\r\\n                <Attributes>\\r\\n                  <Attribute Name=\\\"Parent.Notes\\\" DataType=\\\"Text\\\" />\\r\\n                  <Attribute Name=\\\"Parent.Description\\\" DataType=\\\"Text\\\" />\\r\\n                </Attributes>\\r\\n              </Attribute>\\r\\n              <Attribute Name=\\\"Location.Notes\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"Location.Description\\\" DataType=\\\"Text\\\" />\\r\\n            </Attributes>\\r\\n          </Attribute>\\r\\n          <Attribute Name=\\\"RFI.Number\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.OfficialResponder\\\" DataType=\\\"Entity\\\">\\r\\n            <Attributes>\\r\\n              <Attribute Name=\\\"OfficialResponder.EmailAddress\\\" DataType=\\\"EmailAddress\\\" />\\r\\n              <Attribute Name=\\\"OfficialResponder.FirstName\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"OfficialResponder.LastName\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"OfficialResponder.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n            </Attributes>\\r\\n          </Attribute>\\r\\n          <Attribute Name=\\\"RFI.Responders\\\" DataType=\\\"Entity\\\">\\r\\n            <Attributes>\\r\\n              <Attribute Name=\\\"Responders.EmailAddress\\\" DataType=\\\"EmailAddress\\\" />\\r\\n              <Attribute Name=\\\"Responders.FirstName\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"Responders.LastName\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"Responders.ContactCompanyLabel\\\" DataType=\\\"TextTokenized\\\" />\\r\\n            </Attributes>\\r\\n          </Attribute>\\r\\n          <Attribute Name=\\\"RFI.ProposedSolution\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Question\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reason\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reference\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Response\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Status\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Subject\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.TimeEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostAmount\\\" DataType=\\\"Currency\\\" />\\r\\n          <Attribute Name=\\\"RFI.NumberOfDays\\\" DataType=\\\"Integer\\\" />\\r\\n          <Attribute Name=\\\"RFI.Discipline\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup1\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup2\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup3\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup4\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup5\\\" DataType=\\\"Lookup\\\" />\\r\\n        </Select>\\r\\n        <From>\\r\\n          <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n        </From>\\r\\n        <Order>\\r\\n          <Attribute Name=\\\"RFI.Number\\\" Direction=\\\"ASC\\\" />\\r\\n        </Order>\\r\\n      </LegacyDataSource.DataSourceXml>\\r\\n    </LegacyDataSource>\\r\\n    <LegacyDataSource type=\\\"Legacy\\\" Name=\\\"RFIListExport\\\">\\r\\n      <LegacyDataSource.DataSourceXml Name=\\\"RFIListExport\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read|Write\\\">\\r\\n        <Select>\\r\\n          <Attribute Name=\\\"RFI.Author\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRefPlus\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CSICode\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_AEC_CSICode.CSICodeForRef\\\" />\\r\\n          <Attribute Name=\\\"RFI.Date\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateResponded\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DueDate\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateSent\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.Location\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_Location.LocationForRefWithAddress\\\" />\\r\\n          <Attribute Name=\\\"RFI.Number\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.OfficialResponder\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRefPlus\\\" />\\r\\n          <Attribute Name=\\\"RFI.Responders\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRefPlus\\\" />\\r\\n          <Attribute Name=\\\"RFI.ProposedSolution\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Question\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reason\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reference\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Response\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Status\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Subject\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.TimeEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostAmount\\\" DataType=\\\"Currency\\\" />\\r\\n          <Attribute Name=\\\"RFI.NumberOfDays\\\" DataType=\\\"Integer\\\" />\\r\\n          <Attribute Name=\\\"RFI.Discipline\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup1\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup2\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup3\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup4\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup5\\\" DataType=\\\"Lookup\\\" />\\r\\n        </Select>\\r\\n        <From>\\r\\n          <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n        </From>\\r\\n        <Order>\\r\\n          <Attribute Name=\\\"RFI.Number\\\" Direction=\\\"ASC\\\" />\\r\\n        </Order>\\r\\n      </LegacyDataSource.DataSourceXml>\\r\\n    </LegacyDataSource>\\r\\n    <LegacyDataSource type=\\\"Legacy\\\" Name=\\\"RFILookupBySearchField\\\">\\r\\n      <LegacyDataSource.DataSourceXml Name=\\\"RFILookupBySearchField\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default|IncludeAppPartitions\\\" Access=\\\"Read\\\">\\r\\n        <Parameters>\\r\\n          <Parameter Name=\\\"SearchField\\\" />\\r\\n        </Parameters>\\r\\n        <Select>\\r\\n          <Attribute Name=\\\"RFI.ShortLabel\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n        </Select>\\r\\n        <From>\\r\\n          <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n        </From>\\r\\n        <Where>\\r\\n          <Attribute Name=\\\"RFI.ShortLabel\\\" ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n            <Contains Parameter=\\\"SearchField\\\" />\\r\\n          </Attribute>\\r\\n        </Where>\\r\\n        <Order>\\r\\n          <Attribute Name=\\\"RFI.ShortLabel\\\" Direction=\\\"ASC\\\" />\\r\\n        </Order>\\r\\n      </LegacyDataSource.DataSourceXml>\\r\\n    </LegacyDataSource>\\r\\n    <LegacyDataSource type=\\\"Legacy\\\" Name=\\\"RFIDataForPortableView\\\">\\r\\n      <LegacyDataSource.DataSourceXml Name=\\\"RFIDataForPortableView\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\">\\r\\n        <Parameters>\\r\\n          <Parameter Name=\\\"Id\\\" />\\r\\n        </Parameters>\\r\\n        <Select>\\r\\n          <Attribute Name=\\\"RFI.Author\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Date\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateResponded\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DueDate\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateSent\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.CSICode\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_AEC_CSICode.CSICodeForRef\\\" />\\r\\n          <Attribute Name=\\\"RFI.Location\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_Location.LocationForRefWithAddress\\\" />\\r\\n          <Attribute Name=\\\"RFI.Number\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.OfficialResponder\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" />\\r\\n          <Attribute Name=\\\"RFI.Responders\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" />\\r\\n          <Attribute Name=\\\"RFI.ProposedSolution\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Question\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reason\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reference\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Response\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Status\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Subject\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostAmount\\\" DataType=\\\"Currency\\\" />\\r\\n          <Attribute Name=\\\"RFI.NumberOfDays\\\" DataType=\\\"Integer\\\" />\\r\\n          <Attribute Name=\\\"RFI.TimeEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.OutwardReferences\\\" LinkedEntityDef=\\\"kahua_Reference.kahua_ReferenceBase\\\" />\\r\\n          <Attribute Name=\\\"RFI.Discipline\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup1\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup2\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup3\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup4\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.UniversalLookup5\\\" DataType=\\\"Lookup\\\" />\\r\\n        </Select>\\r\\n        <From>\\r\\n          <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n        </From>\\r\\n        <Where>\\r\\n          <Attribute Name=\\\"RFI.Id\\\" ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n            <Equals Parameter=\\\"Id\\\" />\\r\\n          </Attribute>\\r\\n        </Where>\\r\\n      </LegacyDataSource.DataSourceXml>\\r\\n    </LegacyDataSource>\\r\\n    <LegacyDataSource type=\\\"Legacy\\\" Name=\\\"RFIExchangeCopyData\\\">\\r\\n      <LegacyDataSource.DataSourceXml Name=\\\"RFIExchangeCopyData\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\">\\r\\n        <Select>\\r\\n          <Attribute Name=\\\"RFI.Author\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRefComplete\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Date\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateResponded\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DueDate\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.DateSent\\\" DataType=\\\"Date\\\" />\\r\\n          <Attribute Name=\\\"RFI.Id\\\" />\\r\\n          <Attribute Name=\\\"RFI.CSICode\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_AEC_CSICode.CSICodeForRef\\\" />\\r\\n          <Attribute Name=\\\"RFI.Location\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_Location.LocationForRefComplete\\\" />\\r\\n          <Attribute Name=\\\"RFI.Number\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.OfficialResponder\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRefComplete\\\" />\\r\\n          <Attribute Name=\\\"RFI.Responders\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_PeopleManager.ContactForRefComplete\\\" />\\r\\n          <Attribute Name=\\\"RFI.ProposedSolution\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Question\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reason\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Reference\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Response\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.Status\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.Subject\\\" DataType=\\\"Text\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.CostAmount\\\" DataType=\\\"Currency\\\" />\\r\\n          <Attribute Name=\\\"RFI.NumberOfDays\\\" DataType=\\\"Integer\\\" />\\r\\n          <Attribute Name=\\\"RFI.TimeEffect\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.OutwardReferences\\\" SelectTemplate=\\\"kahua_Reference.Reference\\\" />\\r\\n          <Attribute Name=\\\"RFI.PortableView\\\" DataType=\\\"Entity\\\" SelectTemplate=\\\"kahua_Core.CurrentFile\\\" />\\r\\n          <Attribute Name=\\\"RFI.Discipline\\\" DataType=\\\"Lookup\\\" />\\r\\n          <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n        </Select>\\r\\n        <From>\\r\\n          <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n        </From>\\r\\n      </LegacyDataSource.DataSourceXml>\\r\\n    </LegacyDataSource>\\r\\n    <QueryDataSource type=\\\"Query\\\" Name=\\\"RFIQueryDataSource\\\" Label=\\\"[RFIQueryDataSourceLabel]\\\">\\r\\n      <QueryDataSource.Query EntityDef=\\\"kahua_AEC_RFI.RFI\\\" EntityDefMode=\\\"Single\\\" TakeAll=\\\"True\\\" Name=\\\"RFIQuery\\\">\\r\\n        <Query.Explicits>\\r\\n          <Data Path=\\\"OfficialResponder\\\" />\\r\\n          <Data Path=\\\"CSICode\\\" />\\r\\n          <Data Path=\\\"Responders\\\" />\\r\\n          <Data Path=\\\"Author\\\" />\\r\\n          <Data Path=\\\"SecondaryComments\\\" />\\r\\n          <Data Path=\\\"Location\\\" />\\r\\n          <Data Path=\\\"OwnerRepresentative\\\" />\\r\\n          <Data Path=\\\"AssignedTo\\\" />\\r\\n          <Data Path=\\\"CreatedBy\\\" />\\r\\n          <Data Path=\\\"Media\\\" />\\r\\n        </Query.Explicits>\\r\\n      </QueryDataSource.Query>\\r\\n    </QueryDataSource>\\r\\n  </App.DataSources>\\r\\n  <EntityDefs>\\r\\n    <EntityDef Name=\\\"RFI\\\" IsAttachable=\\\"True\\\" IsConfigurable=\\\"True\\\" Description=\\\"AEC Request For Information\\\" Label=\\\"[EntityDefLabel]\\\" LabelPlural=\\\"[EntityDefLabelPlural]\\\" LabelAbbv=\\\"[EntityDefLabelAbbv]\\\" LabelAbbvPlural=\\\"[EntityDefLabelAbbvPlural]\\\" EntityType=\\\"Document\\\" IsSearchable=\\\"True\\\" IsReportable=\\\"True\\\" DefaultEntityActionList=\\\"kahua_AEC_RFI.RFIDefaultEntityActions\\\" DefaultReport=\\\"kahua_AEC_RFI.RFIViewReport\\\" AppName=\\\"kahua_AEC_RFI\\\" AutomationLabel=\\\"[Attribute(Number)] [Attribute(Subject)]\\\">\\r\\n      <Attributes>\\r\\n        <Attribute Name=\\\"Author\\\" Label=\\\"[AttributeAuthorLabel]\\\" Description=\\\"[AttributeAuthorDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" IsConfigurable=\\\"true\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultEntity Text=\\\"[CurrentUser]\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"CSICode\\\" Label=\\\"[AttributeCSICodeLabel]\\\" Description=\\\"[AttributeCSICodeDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_AEC_CSICode.CSICode\\\" IsConfigurable=\\\"true\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"CostEffect\\\" Label=\\\"[AttributeCostEffectLabel]\\\" Description=\\\"[AttributeCostEffectDescription]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_AEC_RFI.RFICostEffect\\\" />\\r\\n        <Attribute Name=\\\"Date\\\" Label=\\\"[AttributeDateLabel]\\\" Description=\\\"[AttributeDateDescription]\\\" DataType=\\\"Date\\\" IsConfigurable=\\\"true\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultDate IsRelativeDate=\\\"True\\\" OffsetEnum=\\\"Day\\\" OffsetValue=\\\"0\\\" AbsoluteDate=\\\"\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"DateResponded\\\" Label=\\\"[AttributeDateRespondedLabel]\\\" Description=\\\"[AttributeDateRespondedDescription]\\\" DataType=\\\"Date\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"DueDate\\\" Label=\\\"[AttributeDueDateLabel]\\\" Description=\\\"[AttributeDueDateDescription]\\\" DataType=\\\"Date\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Location\\\" Label=\\\"[AttributeLocationLabel]\\\" Description=\\\"[AttributeLocationDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_Location.Location\\\" IsConfigurable=\\\"true\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Number\\\" Label=\\\"[AttributeNumberLabel]\\\" Description=\\\"[AttributeNumberDescription]\\\" DataType=\\\"AutoNumber\\\" IsConfigurable=\\\"true\\\" MaxLength=\\\"30\\\" />\\r\\n        <Attribute Name=\\\"OfficialResponder\\\" Label=\\\"[AttributeOfficialResponderLabel]\\\" Description=\\\"[AttributeOfficialResponderDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Responders\\\" Label=\\\"[AttributeRespondersLabel]\\\" Description=\\\"[AttributeRespondersDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" IsConfigurable=\\\"true\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"ProposedSolution\\\" Label=\\\"[AttributeProposedSolutionLabel]\\\" Description=\\\"[AttributeProposedSolutionDescription]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Question\\\" Label=\\\"[AttributeQuestionLabel]\\\" Description=\\\"[AttributeQuestionDescription]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Reason\\\" Label=\\\"[AttributeReasonLabel]\\\" Description=\\\"[AttributeReasonDescription]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_AEC_RFI.RFIReason\\\" />\\r\\n        <Attribute Name=\\\"ReviewStartDate\\\" DataType=\\\"Date\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"ReviewEndDate\\\" DataType=\\\"Date\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"CostAmount\\\" Label=\\\"[FieldCostAmountLabel]\\\" DataType=\\\"Currency\\\" />\\r\\n        <Attribute Name=\\\"NumberOfDays\\\" Label=\\\"[FieldNumberOfDaysLabel]\\\" DataType=\\\"Integer\\\" />\\r\\n        <Attribute Name=\\\"DateSent\\\" Label=\\\"[FieldDateSentLabel]\\\" DataType=\\\"Date\\\" />\\r\\n        <Attribute Name=\\\"Reference\\\" Label=\\\"[AttributeReferenceLabel]\\\" Description=\\\"[AttributeReferenceDescription]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Response\\\" Label=\\\"[AttributeResponseLabel]\\\" Description=\\\"[AttributeResponseDescription]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Status\\\" Label=\\\"[AttributeStatusLabel]\\\" Description=\\\"[AttributeStatusDescription]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_AEC_RFI.RFIStatus\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultText Text=\\\"Open\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"Subject\\\" Label=\\\"[AttributeSubjectLabel]\\\" Description=\\\"[AttributeSubjectDescription]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"TimeEffect\\\" Label=\\\"[AttributeTimeEffectLabel]\\\" Description=\\\"[AttributeStatusDescription]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_AEC_RFI.RFITimeEffect\\\" />\\r\\n        <Attribute Name=\\\"ShortLabel\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultText Text=\\\"[EntityDefLabel] [Number]\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"AppNameLabel\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultText Text=\\\"[RFIAppNameLabel]\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"LongLabel\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultText Text=\\\"[EntityDefLabel] [Number]\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"DetailLabel\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultText Text=\\\"[EntityDefLabel] [Number]: [Subject]\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"RecycleBinLabel\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\">\\r\\n          <DefaultValue>\\r\\n            <DefaultText Text=\\\"[Number]: [Subject]\\\" />\\r\\n          </DefaultValue>\\r\\n        </Attribute>\\r\\n        <Attribute Name=\\\"Notes\\\" Label=\\\"[FieldNotesLabel]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Attachments\\\" Label=\\\"[AttributeAttachmentsLabel]\\\" Description=\\\"[AttributeAttachmentsDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_Core.kahua_File\\\" ReferenceType=\\\"Owner\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Distribution\\\" Label=\\\"[AttributeDistributionLabel]\\\" Description=\\\"[AttributeDistributionDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_MessageManager.kahua_MessageParticipant\\\" IsConfigurable=\\\"true\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"SheetDetail\\\" Label=\\\"[AttributeSheetDetailLabel]\\\" Description=\\\"[AttributeSheetDetailDescription]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"ResponseSecondary\\\" Label=\\\"[AttributeResponseSecondaryLabel]\\\" Description=\\\"[AttributeResponseSecondaryDescription]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"AssignedTo\\\" Label=\\\"[AttributeAssignedToLabel]\\\" Description=\\\"[AttributeAssignedToDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" IsConfigurable=\\\"true\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"SecondaryComments\\\" Label=\\\"[RespondersCommentsLabel]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_Core.kahua_Comment\\\" IsConfigurable=\\\"true\\\" ReferenceType=\\\"Owner\\\" LinkedEntityDefMode=\\\"Attribute\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Discipline\\\" Label=\\\"[FieldDisciplineLabel]\\\" Description=\\\"[FieldDisciplineDescription]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_AEC_RFI.RFIDiscipline\\\" />\\r\\n        <Attribute Name=\\\"WorkSuspended\\\" Label=\\\"[RFI_WorkSuspendedLabel]\\\" Description=\\\"[RFI_WorkSuspendedDescription]\\\" DataType=\\\"Boolean\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"Type\\\" Label=\\\"[RFI_TypeLabel]\\\" Description=\\\"[RFI_TypeDescription]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_AEC_RFI.RFIType\\\" />\\r\\n        <Attribute Name=\\\"RFIReferenceNumber1\\\" Label=\\\"[RFI_RFIReferenceNumber1Label]\\\" Description=\\\"[RFI_RFIReferenceNumber1Description]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"RFIReferenceNumber2\\\" Label=\\\"[RFI_RFIReferenceNumber2Label]\\\" Description=\\\"[RFI_RFIReferenceNumber2Description]\\\" DataType=\\\"Text\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"OwnerRepresentative\\\" Label=\\\"[FieldOwnerRepresentativeLabel]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"SentToOwnerDate\\\" Label=\\\"[FieldSentToOwnerDateLabel]\\\" DataType=\\\"Date\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup1\\\" Label=\\\"[UniversalLookup1Label]\\\" Description=\\\"[UniversalLookup1Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal1\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup2\\\" Label=\\\"[UniversalLookup2Label]\\\" Description=\\\"[UniversalLookup2Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal2\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup3\\\" Label=\\\"[UniversalLookup3Label]\\\" Description=\\\"[UniversalLookup3Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal3\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup4\\\" Label=\\\"[UniversalLookup4Label]\\\" Description=\\\"[UniversalLookup4Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal4\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup5\\\" Label=\\\"[UniversalLookup5Label]\\\" Description=\\\"[UniversalLookup5Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal5\\\" />\\r\\n      </Attributes>\\r\\n      <ParentEntityDefs>\\r\\n        <EntityDef Ref=\\\"kahua_Core.kahua_MediaBase\\\" />\\r\\n        <EntityDef Ref=\\\"kahua_Core.kahua_PinSource\\\" />\\r\\n        <EntityDef Ref=\\\"kahua_Core.kahua_TagSource\\\" />\\r\\n      </ParentEntityDefs>\\r\\n      <Permissions>\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Add\\\" Operation=\\\"Create\\\" />\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" Operation=\\\"Read\\\" />\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\" Operation=\\\"Update\\\" />\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Remove\\\" Operation=\\\"Delete\\\" />\\r\\n      </Permissions>\\r\\n      <EntityDef.Expressions>\\r\\n        <DateDiff Name=\\\"DaysOutstanding\\\" Start=\\\"ReviewStartDate\\\" End=\\\"ReviewEndDate\\\" />\\r\\n        <DateDiff Name=\\\"EarlyLateResponse\\\" Start=\\\"DueDate\\\" End=\\\"DateResponded\\\" Label=\\\"[FieldEarlyLateResponseLabel]\\\" />\\r\\n      </EntityDef.Expressions>\\r\\n      <EntityDef.EmailIn Enabled=\\\"True\\\" Operation=\\\"Edit\\\" />\\r\\n      <EntityDef.UnrestrictedAttributes Values=\\\"Number,Subject\\\" />\\r\\n      <EntityDef.Labeling NumberPath=\\\"Number\\\" SubjectPath=\\\"Subject\\\" StatusPath=\\\"Status\\\" Acronym=\\\"RFI\\\" />\\r\\n    </EntityDef>\\r\\n    <EntityDef Name=\\\"RFIWorkflowItem\\\" EntityType=\\\"Document\\\" DefaultReport=\\\"kahua_AEC_RFI.RFITaskViewReport\\\" AppName=\\\"kahua_AEC_RFI\\\">\\r\\n      <Attributes>\\r\\n        <Attribute Name=\\\"Author\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" />\\r\\n        <Attribute Name=\\\"CSICode\\\" Label=\\\"[AttributeCSICodeLabel]\\\" Description=\\\"[AttributeCSICodeDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_AEC_CSICode.CSICode\\\" IsConfigurable=\\\"true\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"CostEffect\\\" DataType=\\\"Lookup\\\" LookupListName=\\\"kahua_AEC_RFI.RFICostEffect\\\" />\\r\\n        <Attribute Name=\\\"Date\\\" Label=\\\"[AttributeDateLabel]\\\" Description=\\\"[AttributeDateDescription]\\\" DataType=\\\"Date\\\" IsConfigurable=\\\"true\\\" />\\r\\n        <Attribute Name=\\\"DateResponded\\\" DataType=\\\"Date\\\" />\\r\\n        <Attribute Name=\\\"DueDate\\\" DataType=\\\"Date\\\" />\\r\\n        <Attribute Name=\\\"DateSent\\\" Label=\\\"[FieldDateSentLabel]\\\" DataType=\\\"Date\\\" />\\r\\n        <Attribute Name=\\\"Location\\\" Label=\\\"[AttributeLocationLabel]\\\" Description=\\\"[AttributeLocationDescription]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_Location.Location\\\" IsConfigurable=\\\"true\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Number\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"OfficialResponder\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" />\\r\\n        <Attribute Name=\\\"Responders\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Distribution\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_MessageManager.kahua_MessageParticipant\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"ProposedSolution\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"Question\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"Reason\\\" DataType=\\\"Lookup\\\" LookupListName=\\\"kahua_AEC_RFI.RFIReason\\\" />\\r\\n        <Attribute Name=\\\"SheetDetail\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"Response\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"ResponseSecondary\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"AssignedTo\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_PeopleManager.kahua_Contact\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Status\\\" DataType=\\\"Lookup\\\" LookupListName=\\\"kahua_AEC_RFI.RFIStatus\\\" />\\r\\n        <Attribute Name=\\\"Subject\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"CostAmount\\\" Label=\\\"[FieldCostAmountLabel]\\\" DataType=\\\"Currency\\\" />\\r\\n        <Attribute Name=\\\"NumberOfDays\\\" Label=\\\"[FieldNumberOfDaysLabel]\\\" DataType=\\\"Integer\\\" />\\r\\n        <Attribute Name=\\\"TimeEffect\\\" DataType=\\\"Lookup\\\" LookupListName=\\\"kahua_AEC_RFI.RFITimeEffect\\\" />\\r\\n        <Attribute Name=\\\"Attachments\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_Core.kahua_File\\\" ReferenceType=\\\"Owner\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"SecondaryComments\\\" Label=\\\"[CommentsLabel]\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_Core.kahua_Comment\\\" ReferenceType=\\\"Owner\\\" LinkedEntityDefMode=\\\"Attribute\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Project\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"Reference\\\" DataType=\\\"Text\\\" />\\r\\n        <Attribute Name=\\\"Items\\\" DataType=\\\"Entity\\\" LinkedEntityDef=\\\"kahua_AEC_RFI.SubItem\\\" Cardinality=\\\"OneToMany\\\" />\\r\\n        <Attribute Name=\\\"Discipline\\\" Label=\\\"[FieldDisciplineLabel]\\\" Description=\\\"[FieldDisciplineDescription]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_AEC_RFI.RFIDiscipline\\\" />\\r\\n        <Attribute Name=\\\"WorkSuspended\\\" DataType=\\\"Boolean\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup1\\\" Label=\\\"[UniversalLookup1Label]\\\" Description=\\\"[UniversalLookup1Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal1\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup2\\\" Label=\\\"[UniversalLookup2Label]\\\" Description=\\\"[UniversalLookup2Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal2\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup3\\\" Label=\\\"[UniversalLookup3Label]\\\" Description=\\\"[UniversalLookup3Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal3\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup4\\\" Label=\\\"[UniversalLookup4Label]\\\" Description=\\\"[UniversalLookup4Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal4\\\" />\\r\\n        <Attribute Name=\\\"UniversalLookup5\\\" Label=\\\"[UniversalLookup5Label]\\\" Description=\\\"[UniversalLookup5Description]\\\" DataType=\\\"Lookup\\\" IsConfigurable=\\\"true\\\" LookupListName=\\\"kahua_UniversalLookup.Universal5\\\" />\\r\\n      </Attributes>\\r\\n      <ParentEntityDefs>\\r\\n        <EntityDef Ref=\\\"kahua_Workflow.kahua_TaskWorkflow\\\" />\\r\\n        <EntityDef Ref=\\\"kahua_Core.kahua_MediaBase\\\" />\\r\\n      </ParentEntityDefs>\\r\\n      <Permissions>\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Add\\\" Operation=\\\"Create\\\" />\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" Operation=\\\"Read\\\" />\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\" Operation=\\\"Update\\\" />\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Remove\\\" Operation=\\\"Delete\\\" />\\r\\n      </Permissions>\\r\\n    </EntityDef>\\r\\n  </EntityDefs>\\r\\n  <EntityTransforms>\\r\\n    <EntityTransform Name=\\\"RFIToIssueTransform\\\" Cardinality=\\\"OneToOne\\\">\\r\\n      <Source EntityDef=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n      <Target EntityDef=\\\"kahua_Issue.Issue\\\" AttributePrefix=\\\"Issue\\\" DataSource=\\\"kahua_Issue.IssueData\\\" LoadEntityDefaults=\\\"True\\\" />\\r\\n      <AttributeMap>\\r\\n        <Item SourceAttribute=\\\"Subject\\\" TargetAttribute=\\\"Subject\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Question\\\" TargetAttribute=\\\"Description\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Location\\\" TargetAttribute=\\\"Location\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Response\\\" TargetAttribute=\\\"Outcome\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"OutwardReferences\\\" TargetAttribute=\\\"OutwardReferences\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n      </AttributeMap>\\r\\n    </EntityTransform>\\r\\n    <EntityTransform Name=\\\"RFIToRFI\\\" Cardinality=\\\"OneToOne\\\" PlatformScript=\\\"kahua_AEC_RFI.RFIToRFITransform\\\">\\r\\n      <Source EntityDef=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n      <Target EntityDef=\\\"kahua_AEC_RFI.RFI\\\" AttributePrefix=\\\"RFI\\\" LoadEntityDefaults=\\\"True\\\" />\\r\\n      <AttributeMap>\\r\\n        <Item SourceAttribute=\\\"Author\\\" TargetAttribute=\\\"Author\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"CostEffect\\\" TargetAttribute=\\\"CostEffect\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"DateResponded\\\" TargetAttribute=\\\"DateResponded\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"DueDate\\\" TargetAttribute=\\\"DueDate\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"ProposedSolution\\\" TargetAttribute=\\\"ProposedSolution\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Question\\\" TargetAttribute=\\\"Question\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Reason\\\" TargetAttribute=\\\"Reason\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Reference\\\" TargetAttribute=\\\"Reference\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Response\\\" TargetAttribute=\\\"Response\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Status\\\" TargetAttribute=\\\"Status\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Subject\\\" TargetAttribute=\\\"Subject\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"TimeEffect\\\" TargetAttribute=\\\"TimeEffect\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"OutwardReferences\\\" TargetAttribute=\\\"OutwardReferences\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n      </AttributeMap>\\r\\n    </EntityTransform>\\r\\n    <EntityTransform Name=\\\"RFIToSubGCRFIAll\\\" Cardinality=\\\"OneToOne\\\">\\r\\n      <Source EntityDef=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n      <Target EntityDef=\\\"kahua_AEC_SubGC_RFI.SubGCRFI\\\" LoadEntityDefaults=\\\"True\\\" />\\r\\n      <AttributeMap>\\r\\n        <Item SourceAttribute=\\\"Author\\\" TargetAttribute=\\\"Author\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"CostEffect\\\" TargetAttribute=\\\"CostEffect\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"DateResponded\\\" TargetAttribute=\\\"DateResponded\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"DueDate\\\" TargetAttribute=\\\"DueDate\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"ProposedSolution\\\" TargetAttribute=\\\"ProposedSolution\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Question\\\" TargetAttribute=\\\"Question\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Reason\\\" TargetAttribute=\\\"Reason\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Reference\\\" TargetAttribute=\\\"Reference\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Response\\\" TargetAttribute=\\\"Response\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Status\\\" TargetAttribute=\\\"Status\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"Subject\\\" TargetAttribute=\\\"Subject\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"TimeEffect\\\" TargetAttribute=\\\"TimeEffect\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"OutwardReferences\\\" TargetAttribute=\\\"OutwardReferences\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n      </AttributeMap>\\r\\n    </EntityTransform>\\r\\n    <EntityTransform Name=\\\"RFIToSubGCRFI\\\" Cardinality=\\\"OneToOne\\\">\\r\\n      <Source EntityDef=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n      <Target EntityDef=\\\"kahua_AEC_SubGC_RFI.SubGCRFI\\\" LoadEntityDefaults=\\\"True\\\" />\\r\\n      <AttributeMap>\\r\\n        <Item SourceAttribute=\\\"Response\\\" TargetAttribute=\\\"Response\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n        <Item SourceAttribute=\\\"OutwardReferences\\\" TargetAttribute=\\\"OutwardReferences\\\" Operation=\\\"Default\\\">\\r\\n          <TransformBlockScript />\\r\\n        </Item>\\r\\n      </AttributeMap>\\r\\n    </EntityTransform>\\r\\n  </EntityTransforms>\\r\\n  <App.Reports>\\r\\n    <LegacyReport Name=\\\"RFIViewReport\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"View\\\">\\r\\n      <LegacyReport.ReportXml Name=\\\"RFIViewReport\\\" Label=\\\"[RFIViewReportLabel]\\\" AppName=\\\"kahua_AEC_RFI\\\" Description=\\\"[RFIViewReportDescription]\\\" Editor=\\\"Designer\\\" Type=\\\"View\\\" Scope=\\\"DomainAndPartititon\\\" Availability=\\\"Everyone\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Author=\\\"Kahua\\\" HubDef=\\\"kahua_AEC_RFI.NoWorkflow,kahua_AEC_RFI.Default\\\">\\r\\n        <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n        <Designer>\\r\\n          <StiSerializer version=\\\"1.02\\\" type=\\\"Net\\\" application=\\\"StiReport\\\">\\r\\n            <Dictionary Ref=\\\"1\\\" type=\\\"Dictionary\\\" isKey=\\\"true\\\">\\r\\n              <BusinessObjects isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n              <Databases isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n              <DataSources isList=\\\"true\\\" count=\\\"3\\\">\\r\\n                <RFI Ref=\\\"2\\\" type=\\\"DataTableSource\\\" isKey=\\\"true\\\">\\r\\n                  <Alias>RFI</Alias>\\r\\n                  <Columns isList=\\\"true\\\" count=\\\"24\\\">\\r\\n                    <value>Id,System.Int32</value>\\r\\n                    <value>Number,System.String</value>\\r\\n                    <value>Subject,System.String</value>\\r\\n                    <value>Status,System.String</value>\\r\\n                    <value>CostEffect,System.String</value>\\r\\n                    <value>CSICodeShortLabel,System.String</value>\\r\\n                    <value>TimeEffect,System.String</value>\\r\\n                    <value>ReferenceText,System.String</value>\\r\\n                    <value>Date,System.DateTime</value>\\r\\n                    <value>LocationShortLabel,System.String</value>\\r\\n                    <value>AuthorContactCompanyLabel,System.String</value>\\r\\n                    <value>Reason,System.String</value>\\r\\n                    <value>Question,System.String</value>\\r\\n                    <value>ProposedSolution,System.String</value>\\r\\n                    <value>DueDate,System.DateTime</value>\\r\\n                    <value>DateResponded,System.DateTime</value>\\r\\n                    <value>OfficialResponderContactCompanyLabel,System.String</value>\\r\\n                    <value>Response,System.String</value>\\r\\n                    <value>UniversalLookup1,System.String</value>\\r\\n                    <value>UniversalLookup2,System.String</value>\\r\\n                    <value>UniversalLookup3,System.String</value>\\r\\n                    <value>UniversalLookup4,System.String</value>\\r\\n                    <value>UniversalLookup5,System.String</value>\\r\\n                    <value>RFI_Id,System.Int32</value>\\r\\n                  </Columns>\\r\\n                  <Dictionary isRef=\\\"1\\\" />\\r\\n                  <Key>e36800f863564aafb19c47238a7fd034</Key>\\r\\n                  <Name>RFI</Name>\\r\\n                  <NameInSource>Schema.RFI</NameInSource>\\r\\n                </RFI>\\r\\n                <Reference Ref=\\\"3\\\" type=\\\"DataTableSource\\\" isKey=\\\"true\\\">\\r\\n                  <Alias>Reference</Alias>\\r\\n                  <Columns isList=\\\"true\\\" count=\\\"6\\\">\\r\\n                    <value>Id,System.Int32</value>\\r\\n                    <value>CreatedByUserName,System.String</value>\\r\\n                    <value>Description,System.String</value>\\r\\n                    <value>CreatedDate,System.DateTime</value>\\r\\n                    <value>References_Id,System.Int32</value>\\r\\n                    <value>ReferenceType,System.String</value>\\r\\n                  </Columns>\\r\\n                  <Dictionary isRef=\\\"1\\\" />\\r\\n                  <Key>0eb61eca73074d4da8cf52405259610b</Key>\\r\\n                  <Name>Reference</Name>\\r\\n                  <NameInSource>Schema.Reference</NameInSource>\\r\\n                </Reference>\\r\\n                <References Ref=\\\"4\\\" type=\\\"DataTableSource\\\" isKey=\\\"true\\\">\\r\\n                  <Alias>References</Alias>\\r\\n                  <Columns isList=\\\"true\\\" count=\\\"2\\\">\\r\\n                    <value>References_Id,System.Int32</value>\\r\\n                    <value>RFI_Id,System.Int32</value>\\r\\n                  </Columns>\\r\\n                  <Dictionary isRef=\\\"1\\\" />\\r\\n                  <Key>33c155080ae444458483d87a5554826f</Key>\\r\\n                  <Name>References</Name>\\r\\n                  <NameInSource>Schema.References</NameInSource>\\r\\n                </References>\\r\\n              </DataSources>\\r\\n              <Relations isList=\\\"true\\\" count=\\\"2\\\">\\r\\n                <RFI Ref=\\\"5\\\" type=\\\"DataRelation\\\" isKey=\\\"true\\\">\\r\\n                  <Alias>RFI</Alias>\\r\\n                  <ChildColumns isList=\\\"true\\\" count=\\\"1\\\">\\r\\n                    <value>RFI_Id</value>\\r\\n                  </ChildColumns>\\r\\n                  <ChildSource isRef=\\\"4\\\" />\\r\\n                  <Dictionary isRef=\\\"1\\\" />\\r\\n                  <Name>RFI</Name>\\r\\n                  <NameInSource>RFI_References</NameInSource>\\r\\n                  <ParentColumns isList=\\\"true\\\" count=\\\"1\\\">\\r\\n                    <value>RFI_Id</value>\\r\\n                  </ParentColumns>\\r\\n                  <ParentSource isRef=\\\"2\\\" />\\r\\n                </RFI>\\r\\n                <References Ref=\\\"6\\\" type=\\\"DataRelation\\\" isKey=\\\"true\\\">\\r\\n                  <Alias>References</Alias>\\r\\n                  <ChildColumns isList=\\\"true\\\" count=\\\"1\\\">\\r\\n                    <value>References_Id</value>\\r\\n                  </ChildColumns>\\r\\n                  <ChildSource isRef=\\\"3\\\" />\\r\\n                  <Dictionary isRef=\\\"1\\\" />\\r\\n                  <Name>References</Name>\\r\\n                  <NameInSource>ReferenceRelation</NameInSource>\\r\\n                  <ParentColumns isList=\\\"true\\\" count=\\\"1\\\">\\r\\n                    <value>References_Id</value>\\r\\n                  </ParentColumns>\\r\\n                  <ParentSource isRef=\\\"4\\\" />\\r\\n                </References>\\r\\n              </Relations>\\r\\n              <Report isRef=\\\"0\\\" />\\r\\n              <Resources isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n              <Variables isList=\\\"true\\\" count=\\\"9\\\">\\r\\n                <value>,PartitionLabel,PartitionLabel,,System.String,,False,False,False,False</value>\\r\\n                <value>,ReportTitle,ReportTitle,,System.String,,False,False,False,False</value>\\r\\n                <value>,CurrentTimeZoneLong,CurrentTimeZoneLong,,System.String,,False,False,False,False</value>\\r\\n                <value>,CurrentTimeZoneShort,CurrentTimeZoneShort,,System.String,,False,False,False,False</value>\\r\\n                <value>,CompanyLogo,CompanyLogo,,System.Drawing.Image,,False,False,False,False</value>\\r\\n                <value>,AssembleSnapshotImage,AssembleSnapshotImage,,System.String,,False,False,False,False</value>\\r\\n                <value>,ReportDate,ReportDate,Report_x0020_date_x0020_as_x0020_local_x0020_date,System.String,,False,False,False,False</value>\\r\\n                <value>,PartitionTimeZoneAbbreviated,PartitionTimeZoneAbbreviated,,System.String,,False,False,False,False</value>\\r\\n                <value>,ReportModifiedTimeStamp,ReportModifiedTimeStamp,,System.String,,False,False,False,False</value>\\r\\n              </Variables>\\r\\n            </Dictionary>\\r\\n            <EngineVersion>EngineV2</EngineVersion>\\r\\n            <GlobalizationStrings isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n            <Key>a36ee123b4274f7e88a74e781c6ec84e</Key>\\r\\n            <MetaTags isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n            <Pages isList=\\\"true\\\" count=\\\"1\\\">\\r\\n              <Page1 Ref=\\\"7\\\" type=\\\"Page\\\" isKey=\\\"true\\\">\\r\\n                <Border>None;Black;2;Solid;False;4;Black</Border>\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Components isList=\\\"true\\\" count=\\\"4\\\">\\r\\n                  <PageHeaderBand1 Ref=\\\"8\\\" type=\\\"PageHeaderBand\\\" isKey=\\\"true\\\">\\r\\n                    <Brush>Transparent</Brush>\\r\\n                    <ClientRectangle>0,0.2,7.72,0.9</ClientRectangle>\\r\\n                    <Components isList=\\\"true\\\" count=\\\"4\\\">\\r\\n                      <Text1 Ref=\\\"9\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,0,6.1,0.4</ClientRectangle>\\r\\n                        <ComponentStyle>HeaderTitleStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,24</Font>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text1</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"8\\\" />\\r\\n                        <Text>{ReportTitle}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                        <VertAlignment>Center</VertAlignment>\\r\\n                      </Text1>\\r\\n                      <Image1 Ref=\\\"10\\\" type=\\\"Image\\\" isKey=\\\"true\\\">\\r\\n                        <AspectRatio>True</AspectRatio>\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <ClientRectangle>6.3,0,1.4,0.7</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <HorAlignment>Right</HorAlignment>\\r\\n                        <ImageBytes>iVBORw0KGgoAAAANSUhEUgAAAEEAAABDCAYAAADDP2hOAAAABGdBTUEAALGPC/xhBQAAAAlwSFlz\\r\\nAAAOvAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuODc7gF0AAArJSURB\\r\\nVHhe5ZsJrF1FGYBlK2sLKKXVUngoBh8pKpQEUZFFwRoliKAWKEWKKLUgigtCMIIKWBRcENxRUYu4\\r\\nBbCJGEWFCLGCuD0BEdyKG4qIKwUKft/lPzfz5s6527vvvib9ky/vnvnnzMz/nzmz/Gfe46ZS1lw6\\r\\n/5mwEo6DmZG8/gnGXwWPwn/i99GwWajXD8HgPeEh0BEVp4V6/RGM/mLmhD/DjFCvH4LB8yDvDaeG\\r\\net0VGrkJzI3LCQtlfT6Mr/gTdBwbyDMDto/L4QoVnw3L4nLCQlm7wv8gdcTJoW4RdFvCG0FnrYHv\\r\\nwhvgqbBhZJs8oZLnw4NwQSQNRCjv05A64TeweagbwvU0OAF+DWneCl+rm2DPuGXwQuHbw91ghVdF\\r\\n8kCE8naBvDe8NnQbw5Fwe6SXeBgug9FGgZMhFG5Dqnldfg4bhHogQnmXJOXLnXAY/BgeibQce6Uz\\r\\nzO5RzOQJlTwjKq24H6aFeiBCeSPw3yi/E3b9y2Hyja+Eyp4ADkJpQ3YIddfCPcfC/lB0IOkXQVpH\\r\\njk/+C7Bb3DI8oVJfh99C2qD9Qt2VkH8z+DvYtR1b7P4HQ3M65Pcc+Cek9YgP4HMwfONToQHfjgZV\\r\\nLAlVi6B7Za7n+sVxX45T3SfhRbApXACVbi1cAcPr9u2Ehnw4GlZxTqjGCem7gU/TJ/5ZmB7p/k7v\\r\\nL3EfXBO/3WXOaxS6rggNOikaV3FFqJpCmqu4nyR55GewF/wlSesGHeLgdzisG/sJGvICSBt5U6ia\\r\\nQlrd034duDI8DX4IdVNeHfasr4Lrha2juuELle8AacPugU1Crd7VXMk4n2ZzOcvvDWBncKn7fXDE\\r\\nz+9ph9Po18GZZrgBGSp04/RvqBpj42eHzthAqqtwlVfbldHpENcHvmruAfJpuBM+iC2juMEIBW4H\\r\\nu8NLwIYtB0fnH8BqyJ/03rAN3JakVfwL9oii2wr5dPDT4DlwInwTHoC8zJyro4iJC4U9Hf4IPt1e\\r\\n3ldDYl/K0sQyjovi2wr5joDKwe4BdPgozITjwVlCh+Z1yKIoZmJCQXVPshvq7rsUOu4tyPNcKI0J\\r\\nd0HzNeK3PfQYuBIqh7jh2i6y9CxjI6ONV9nCN4KvRaHdcC/8FBypr420HDc8WzQq6CDkK/WiimMj\\r\\n2zgh3WnYxdjbIqlnwQFzYKxxQUFnQFqxT+WvcDM4qp8LhsV9Yi5pXfo6mPlk3POn94pzu115NuwL\\r\\nbpFrAx3onC7zMirOjmxFwYjj4e6MY0JdK+TRAb+AR22A09Sn4Czw3XaQeyI0p72SoLf3XA15o32n\\r\\nF8GFUMUGXPZ+A4pTGel5aC3lqMhWFIxYqiEZJ4a6KOh1wK2R9+FI7l1oXN57Kj4Eb8/SKr4DLT2C\\r\\ntD2gtH02XtH2lcKInpyAbi7cluS9P1S9CQ07EEpT142wBbgZynVijyhugki3TJfaluuHGHtZx206\\r\\nRnTtBNJ1wO1JPundCTTM9/wPkBv4N3gybA55+Dzl4CiqRdA5zsyCbSOpo2BEV04greQAWRVZuhMa\\r\\nZ5DzW5Ab5rx+SGQz362JLsUBd6fINhDBiI5O4HonuCPRV9wIvU2vGPDuxKCU90SWhnC9EHRMnu8j\\r\\nkWVgghFtncDvHaHkgOthm8jWnWCA02FpG+xgt2lkawppr4Ax0Bm+Ps4+fcUjuc/XxPJcl9gT3wmN\\r\\nJ4ghtU7g7wiUHHANbGWenoWKne9dzlYOcIk9J9Qtgm5DcD+wUST1LNyrA94H+TL+VzAbY4pOgJ3h\\r\\nziSt4kroahFXK1TsQslp0DVA7SA3KKEO9zOlV0suwqCSE5ZDyQFfhpZe25dQuQulk+JyUoV6lobB\\r\\nJcYwquSEtYW0a6HtArBroWKnSIMZzvkLI3nShDpcrpccIKswrOQE3/kHsrQ1MPH2UqmR4nSN4EZq\\r\\nJNSTIpTvXqVuC/1WDKsbE46Eh5I0eRCWRNG9CxXamFLU6DpoGfVJmw/uCdyEOaofGKqehXvdLbqK\\r\\nTOu1zGkYVXSC9/H3VaDhqU7HLG0U3I9QqfHAtCEV74gsDeHaYGzeaFeRiyNLz8K9ht9eD+5ZLL8x\\r\\n42hQYmBFuk5YDHmPcMw4FXr/jkrFfoEywpMaJ64E941s5nN9kOcR1xkDjQViSFsnKFzXOeIM6MsR\\r\\nru1LGyTPCzweXFTVTWkyP4oaiGBERycopC0CB8c03yNwlkYdAHa1cYch2gl5HSBLm6QVMB3qosXO\\r\\nKLtGMeOEdCPVBnONTLsKPQo6PiWM6MoJCulHQz5GrLbyk8HVmLtAIzyfgbeAkWZ3hcWIEOnvh9zI\\r\\nRmAV6kJ1niApxRP2gXwMkTMjS61gRNdOUNDljmg4waWtTyBvgGiU05MjvCdA/HJ0CLh8tuubnt/j\\r\\nV6L9IA+Z3QEtvYA0l8XXR54cAy1PiqxFwYienKCgXwjVq7G6kUhFGuRavNSQEnZrP6+X4gqyCrYG\\r\\ne9Ob4eVQ3LCQ7gEsD3uUypEFkbUoGNGzExTyVI64J5IajXkW5OeFJsLyKLqtkM8YRZ0z5dmRtUXQ\\r\\nzbpr/3nLMOS6hFvgiMjSVsi3BO6Ny8eEQv2u52ew30MvDik9SQfOg6LotkK+DyT3pTjVNjc8/PbV\\r\\neQqcAt8Dp+aPh7ovwQmHx8/xQsFukDyaYwDU1dqZ4AkRt9EulfPGLobfZWniF6VZUWytkMdXwphi\\r\\nul12ynUHaVv8JGjw9keQz0pu5zeOooYjVOh0mjbC8cFZxKm29BXJr0Ud4wnk8Sn7Sr4aXgYe4TGO\\r\\n0O7Inui450UxwxEqPDRpgNgzGmsM/r4rSU/puO0mz1awAD4GjhFpr+jEhVHMcIQK828KN4dKnWeN\\r\\nbkh0Fa4BWo7ckOYM4uvmIst1Sn5fJ7zH13TSgzvjhArdvaUNuSxUDeHagesfib7Cbwq+++5GPcjh\\r\\nHqTb84opnp67GA6CwUSJehEqdWH1S0gb1fJBlDQ/5zlWpPkMkPq+d3PeIMV9iCH888BPhIOJDvUr\\r\\nNMBFVT51HhrqppDmIOcKU71Gu9J0B2pUqptTKDrQmcBxQeftGEVPvdAYT5DkDd4l1OOE9BngtNfc\\r\\nNfJb57g5yssQXw0N9mTMXEjDao4pnmtsu4QeitCIPOjpvqL2vUTXsgskzcBIdb+LLDdbrjOa/7jB\\r\\nb79nerA7rUsca3wtpu4/56j8o9GYCg9i9BSUIL/rDE+wvBSKh7lIz89K5jgt+08nwz/GR6XvjUZU\\r\\nrAjVwIQyjUe4CkzrqUNnnA7DcwaVuaBJQ2cd9/u9CmVqVGqor4w70eofTUoY6fJfgfr7tNarUJFH\\r\\nc6vl8WGRPBChPPcrHhNKDTw/dPYQHeRRoFSf4l5lGXQdJetbqMSIr9PYQI/cU945kBrlQPjY6bIQ\\r\\nrj3S50xRCv9XOKgeELdMjlCBMQBPoQ/M45TlOal8pTnuk38q6Dxr5Rnqqle6HnF7/Sbw0FjfH4G7\\r\\nFirp+jRJN0J5H4TUAYbpOh6gII/bbA98t+QdGxndC/ZJ8Cv23tBYdfrX9EbmqRYMcNrM9xHnhrpv\\r\\nwcBT4Hww2nS6BoNB1heGfgGsbWSeasFg/+MldYCDX8dgTDeCkR7UaGzy+DsdboBL4vpiuMXfUyoY\\r\\n6/ub7yeK/03Tj2Bk7oTL4SuwLayAlY2MUykYXIX7HdjcV7jNHth8j5ElJ7wGPgEnwNQ6AWP9P0tn\\r\\nGY/11x77mYhgZMkJs+A+mDk2Mrry/zzVbJxQipO9AAAAAElFTkSuQmCC</ImageBytes>\\r\\n                        <ImageURL>{CompanyLogo}</ImageURL>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Image1</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"8\\\" />\\r\\n                        <Smoothing>False</Smoothing>\\r\\n                        <Stretch>True</Stretch>\\r\\n                      </Image1>\\r\\n                      <Text4 Ref=\\\"11\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,0.4,6.1,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>HeaderSubTitleStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,12</Font>\\r\\n                        <Guid>c8557e6189e445f0ba283ca27b34fca4</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text4</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"8\\\" />\\r\\n                        <Text>{PartitionLabel}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                        <VertAlignment>Center</VertAlignment>\\r\\n                      </Text4>\\r\\n                      <HorizontalLinePrimitive2 Ref=\\\"12\\\" type=\\\"HorizontalLinePrimitive\\\" isKey=\\\"true\\\">\\r\\n                        <ClientRectangle>0,0.85,7.7,0.01</ClientRectangle>\\r\\n                        <Color>127, 127, 127</Color>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <EndCap Ref=\\\"13\\\" type=\\\"Cap\\\" isKey=\\\"true\\\">\\r\\n                          <Color>Black</Color>\\r\\n                        </EndCap>\\r\\n                        <Name>HorizontalLinePrimitive2</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"8\\\" />\\r\\n                        <StartCap Ref=\\\"14\\\" type=\\\"Cap\\\" isKey=\\\"true\\\">\\r\\n                          <Color>Black</Color>\\r\\n                        </StartCap>\\r\\n                      </HorizontalLinePrimitive2>\\r\\n                    </Components>\\r\\n                    <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                    <Name>PageHeaderBand1</Name>\\r\\n                    <Page isRef=\\\"7\\\" />\\r\\n                    <Parent isRef=\\\"7\\\" />\\r\\n                  </PageHeaderBand1>\\r\\n                  <PageFooterBand1 Ref=\\\"15\\\" type=\\\"PageFooterBand\\\" isKey=\\\"true\\\">\\r\\n                    <Brush>Transparent</Brush>\\r\\n                    <ClientRectangle>0,13.41,7.72,0.9</ClientRectangle>\\r\\n                    <Components isList=\\\"true\\\" count=\\\"6\\\">\\r\\n                      <Text36 Ref=\\\"16\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <AutoWidth>True</AutoWidth>\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1,0.7,1.22,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>TimeZoneLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,9</Font>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text36</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"15\\\" />\\r\\n                        <Text>{ReportModifiedTimeStamp}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextFormat Ref=\\\"17\\\" type=\\\"DateFormat\\\" isKey=\\\"true\\\" />\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text36>\\r\\n                      <Text2 Ref=\\\"18\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <ClientRectangle>0,0.38,1,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>PoweredyByKahuaStyleNamePart1</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10</Font>\\r\\n                        <Guid>507af93cf87644a58804eea41692df6e</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text2</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"15\\\" />\\r\\n                        <Text>[ReportPoweredByLabel]</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text2>\\r\\n                      <Image2 Ref=\\\"19\\\" type=\\\"Image\\\" isKey=\\\"true\\\">\\r\\n                        <AspectRatio>True</AspectRatio>\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <ClientRectangle>1,0.08,1.4,0.5</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Guid>c46cdb1ac7584021a48bd51745452af7</Guid>\\r\\n                        <ImageBytes>iVBORw0KGgoAAAANSUhEUgAAAHMAAAAuCAYAAAAbUybPAAAABGdBTUEAALGPC/xhBQAAAAlwSFlz\\r\\nAAAOvAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuODc7gF0AAAoCSURB\\r\\nVHhe7ZsLsFVVGccBARFIQbSCDBNRNDElR4qaUqfQmlQqBtCsaHJME4PkkWOkhY+0psnMJqsZNJpo\\r\\nzEdaDJOar0krczIsU3LMEktDUcwX+EL7/fZ8+7TOYp97L84950Kz/zM/zl7r+/Y+5+7/Xnuvx6Zf\\r\\nra1PG78zdjFcCPtFVa1tVZi4G2yAe2FgVNfaGoVBA2BKFCtF3Jb5KsyIKuvGwekwBWqTtwZhxBxY\\r\\nFsVKES9b550wGjR3I2jwH+FdkVqrr4QJtsrH4LaoahL1u8Sm298CzdNUP/8Cs2C7SKnV18KMu+Bh\\r\\n6B/lUTABBsFaWAXeTg8DjVwNH4P61rq1CVMug5dgR+gP18BTsBCeAVuhvBLlM2FC7F5raxLGnAWa\\r\\ntT+cGttPwngYBtPhp/AspMbaYk+Ow9TqC2HA2+ASuBEegBdAg86F50GjZkZ6Ico+Gy8HczT2aXCf\\r\\niyOlVqfFyR8J94cRPv/ug5WwDDaB9d+FQbGL++wC3oaN3RV1RYtdN32fk9eMPfCDMKJIDlGeF5u1\\r\\n2iUM8FZ6BOwJ20edPdorQbP+DLZYW95JEX8dPAHGr7euFKb9Hl6Fd0aVdafApijW6qQw6JQwyk7P\\r\\ntNiWVZFizt7wKdg5qgrlZvJpS90EDxUJtTonzJkIDv59Th4LDkduBW+rCyOtSdSPgENge0xrmAkn\\r\\nQmEk7BXptTolDNG8b8D3oso6b7vDo9ikyP8r2HKvwbTSzB+ARv4DxkV6rU4KQxxXfgYWRVWXIs8J\\r\\nhZdBM22BpZn3xuflUM8I9YUw5GCwF+vwZHLUnQHXQqNTk4p6x6K/gY9gXGnmIXBtbC+HenaoL4Qp\\r\\nF4EtzdvnO2JbGvO1bA+Eps6PwrT0mTkUro/yTyKlVruEIbYqhyFLYCbsCzuDk+YaaOzx2C6eo3wO\\r\\nhT+BLXhBcaAQpjXMjPIwuAE2FAm12qcwxrFk2frEyYPSQHu1DlXeD8XEAZ8HQZl7e3EgxPbwh/Y8\\r\\nYCXG/Q0OjOrS0JVufCLhoxHvU/E7fDakv6tYXdhWhQlj4Bhwwnw5rAGNuiU+H4UxkW6+PdgV4FKZ\\r\\na5/HwVXgpPusSGsS52iY/9hkSx6MWJ+K3/FA9rv+r3prGHIpaOJ+cFNsO8U3IOJvgBPgOigXpMVW\\r\\nfH5xkCplJ602swPCEN8e8FY7BMbCenDS4PNwM7wIpYEOS+zJLgCnBFvfpbKTVpvZZmHGYHgO7okq\\r\\n646GQ+HtoIEaewNorrfapTA20lsrO2m1mW0WprwFNOyKqGqIOmeCnOIbFeUToWyhLpX5HtAbi+Qq\\r\\nZSetNrMDwhA7QWdHsVLEdwA7SutgBtwNmmonyDXOkZH6P2UnrTazA8IIp+gOjWKliM8FzVscZScR\\r\\njoc7wBe9Di4SU2UnraWZxBzLTK5gp0hpiLodYAo4rJgHC+Ak+DBMgC7NIV5pJp/DYSq4fncGLIYT\\r\\nwN/RcjqL2BjYP2HHCLWUOdk+b45QpYgPggPgGPgcLAKXp2bCJCjWMnsijHIh+hFwLNq0CN2l+JL0\\r\\npFWaSf0Q+FWSV3IpNE4i22NhKTwFeW6KE8Znw2YXgqI+N9PvXwL/SepyHoTZsFlvj7oLI6dkWoRa\\r\\nipyjsn2WR6hJ1Gv6ufBI5LXiCfg+7B67thQGzgdbYOMF6B4p+TLZzEzqvOJceknz5CIoxkWK7ffA\\r\\n+oj1FGcy9ohDNERdbuayrNwVS+IwDVHXFjOp2x3uS3J6wpPQ3S228e7sFin7oiYzKW8HP07iJV+F\\r\\nRgtgexQ8GrEU634Ntuo74TnIc+6AxkWhKOdmpngyXMP7J7wUdSkvQ9PzhHKvm0nZc3N7Ei/xrvQ7\\r\\n8G/2s+oCfwxem2FdKfuShpls94eLk5i8AqdHSkPU+fxK8zTRk5Gb5Cz/qZCbMDVSClGuMvMS2BvS\\r\\nu4HP0OMgv5CWRkohyu0w88gs/iLMgaZnI+WBMB1yU0+LlN5T9gWFmXxq5NeTevGKn1PslIn6cia/\\r\\n5AMRqhTx87P8CyJUiHJu5ooIVYr4YVm+z8/0ztEOM/ML/YsRqhTxWVn+LRHqPWVfUJr5pazeljS7\\r\\n2KFCxLz1lbm2ku56q/Zo0+PfEKFClHMzj4xQpYh78f0ryfcO0hiHsd0OM2/K4l12bIjb90jP0+PQ\\r\\nu0Ou5ODiFe1QwpNR1j0P0yN9MxHz2fEVOCeYG6GWImckbIDyO1ZHqBDl3MzREWopclzTS/eZGCFj\\r\\n7TDToVb5N0uXK/3EB8MqKI/n+zuV7/28ZiUHF+/7fklZfha6vGVWiX00eA/wZd3Pwnngqw23whrY\\r\\nCOn35h2v3MxuX4kg58psn3dHyFivm5mLuHeH0eAt/3hwKOXQ7Uaw1/4MpMeTXWP33lHFF5RobJdd\\r\\n6FTkauDRcBmshbR1d8faOEwhyrmZ3d6OyLki2+e9ETLWNjOpd3LE8ePfIW0IPaFjZkrTWLKVyLEV\\r\\n/iH2eS1sc2ZSdrLgZ7AlF21OW830oXx/Vuf7mS0NJebszOrITfGP9GpdAV4UTm/Zo/NKdrCd3nba\\r\\nbeY3s1hvmHlVFi/5NzjGtLU63eiUpm/SecH/FtLctpppB2gcPJzUyQ+h8oRS79xjmuvt+Ux4U6Rs\\r\\nJmKOD1+Acp92m+l0Wxpr+h9XVSLn49k+DTPZ3gvyFuk05luh5eIxsbsjt6S9ZkadE8u20jRmB6bx\\r\\nP5VKUfe1JEcab2q3Ejm2znSfdps5P4s1vfFWJXLsoaf7pGY6mZ7GnMVq/QYAIr4TODJI92u/mYpt\\r\\nT/jTSUw8YYMjpRDlbydx+XKEWoqcfIqw3WZOy2IrI1Qp4vZMNSjdJzXzk1ns6gi1FDmuHKX7SGfM\\r\\nVJSPgHwY4aT7kEgxJ7/qnYOtXO6h3pM0F/JbVLvN3A2cwSpjbleOnan3Ny6MvJTUzHzGyam6lmNh\\r\\nYodD1bx058xU1M2A9ESI724OjbjPj3yu1avaq3ci2NnZF7w1XQdlTmpoW81UlG/L4g4jfgkadyz4\\r\\njHTmq2ryXFIz/d9YDr/SuP0N1zEPAv/m8fAh+BGk5yf9uztrpqLeBeC8NflafDGDwaeTAmmsJ7ie\\r\\n6QlwuxNmvg/yi7I70qW3hpmKsj3zLR1Xelf7RVLedf2k8f1hNiyERTDIz/iaLVNyYKk0UxE7LcuV\\r\\nm8Hx1gBw5SR/wFdh171YRAa779a13UxF3achf2xUYUtyBsf51HLRuclMRZ0t2kXnfP8ch2F2qDye\\r\\n/6eyrC9aJubtBlNhPsyDc4ov2FJxQFc8Sn4e1ZUi7g9K8+UCKMahfPqmgWMrW62G+IdqnnOSXuXe\\r\\nancoDobY9lniMa6NqkKUr476kp5MXHh3SPeZFKEmUe/Qyx64z/Z0rOtzz8eDq0X7RLr53kE83llR\\r\\n1STqR4Cvh9jqXKheBy423ANeYE5nFm/bKbY9R+VvLBYDMO/1MBkOhy/AUUXyFqlfv/8CMIwbkfmC\\r\\n14cAAAAASUVORK5CYII=</ImageBytes>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Image2</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"15\\\" />\\r\\n                        <Smoothing>False</Smoothing>\\r\\n                        <Stretch>True</Stretch>\\r\\n                      </Image2>\\r\\n                      <Text35 Ref=\\\"20\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <ClientRectangle>5.6,0.68,2.1,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>PageInfo</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10</Font>\\r\\n                        <Guid>d090a2f845b540e1836e80b7b898b3ee</Guid>\\r\\n                        <HorAlignment>Right</HorAlignment>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text35</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"15\\\" />\\r\\n                        <Text>[ReportPageCountStartLabel] {PageNumber} [ReportPageCountMiddleLabel] {TotalPageCount}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text35>\\r\\n                      <Text33 Ref=\\\"21\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <ClientRectangle>0,0.7,1,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>TimeZoneLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,9</Font>\\r\\n                        <Guid>98745f885d7d4d65b53b96f2ae2773db</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text33</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"15\\\" />\\r\\n                        <Text>[ReportViewDateLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text33>\\r\\n                      <HorizontalLinePrimitive6 Ref=\\\"22\\\" type=\\\"HorizontalLinePrimitive\\\" isKey=\\\"true\\\">\\r\\n                        <ClientRectangle>0,0.03,7.7,0.01</ClientRectangle>\\r\\n                        <Color>Black</Color>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <EndCap Ref=\\\"23\\\" type=\\\"Cap\\\" isKey=\\\"true\\\">\\r\\n                          <Color>Black</Color>\\r\\n                        </EndCap>\\r\\n                        <Guid>716de4f7b9e14d5fb004222d20da3fdf</Guid>\\r\\n                        <Name>HorizontalLinePrimitive6</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"15\\\" />\\r\\n                        <StartCap Ref=\\\"24\\\" type=\\\"Cap\\\" isKey=\\\"true\\\">\\r\\n                          <Color>Black</Color>\\r\\n                        </StartCap>\\r\\n                      </HorizontalLinePrimitive6>\\r\\n                    </Components>\\r\\n                    <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                    <Name>PageFooterBand1</Name>\\r\\n                    <Page isRef=\\\"7\\\" />\\r\\n                    <Parent isRef=\\\"7\\\" />\\r\\n                  </PageFooterBand1>\\r\\n                  <DataBand1 Ref=\\\"25\\\" type=\\\"DataBand\\\" isKey=\\\"true\\\">\\r\\n                    <Brush>Transparent</Brush>\\r\\n                    <BusinessObjectGuid isNull=\\\"true\\\" />\\r\\n                    <CanShrink>True</CanShrink>\\r\\n                    <ClientRectangle>0,1.5,7.72,6.3</ClientRectangle>\\r\\n                    <Components isList=\\\"true\\\" count=\\\"44\\\">\\r\\n                      <Text5 Ref=\\\"26\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,0,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>471c49138c6541cf9a47625d3c1ce5b8</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text5</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldSubjectLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text5>\\r\\n                      <Text6 Ref=\\\"27\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,0.9,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>fd1601fa5dcc4994b552e6f64094f2bc</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text6</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldStatusLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text6>\\r\\n                      <Text8 Ref=\\\"28\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,4.3,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>d8df5160ecd44a0a94768cf9ffe9a37e</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text8</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldLocationLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text8>\\r\\n                      <Text9 Ref=\\\"29\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>4,0.6,1.5,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>103c394b703340e6931b2bfec9718af3</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text9</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldAuthorLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text9>\\r\\n                      <Text10 Ref=\\\"30\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,1.2,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>2c45c4cc96224deeac42d120164e8a41</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text10</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldCostEffectLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text10>\\r\\n                      <Text16 Ref=\\\"31\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,2,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>7408c97f4efb423e9f3e9ecce6241b9d</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text16</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldQuestionLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text16>\\r\\n                      <Text13 Ref=\\\"32\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,2.5,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>681fa54a2f9443409b61ea2394512951</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text13</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldProposedSolutionLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text13>\\r\\n                      <Text17 Ref=\\\"33\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,2,6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>b352f7e74038433b9d5bba01b6a6cb23</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text17</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.Question}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextFormat Ref=\\\"34\\\" type=\\\"CustomFormat\\\" isKey=\\\"true\\\">\\r\\n                          <StringFormat>MM/dd/yyyy</StringFormat>\\r\\n                        </TextFormat>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text17>\\r\\n                      <Text12 Ref=\\\"35\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,2.5,6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>a9065b27b3ec4367bd214efd21598fb6</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text12</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.ProposedSolution}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text12>\\r\\n                      <Text20 Ref=\\\"36\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,0,6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>b9a97e790b724959a3dcd1e0fdceb0a9</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text20</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.Subject}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text20>\\r\\n                      <Text21 Ref=\\\"37\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <ClientRectangle>1.7,0.9,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>d95533b39e714e37ae45bb80963550b2</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text21</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.Status}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text21>\\r\\n                      <Text22 Ref=\\\"38\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,1.2,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>0d4f0be43c4f42dc8db8343a1bd4e969</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text22</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.CostEffect}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text22>\\r\\n                      <Text24 Ref=\\\"39\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,4.3,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>6ada52a16bc74f77aa270df5f291ba7b</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text24</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.LocationShortLabel}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text24>\\r\\n                      <Text25 Ref=\\\"40\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>5.6,0.6,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>f7834ff316c24904af9415bb2fe7a34a</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text25</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.AuthorContactCompanyLabel}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text25>\\r\\n                      <Text3 Ref=\\\"41\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,0.3,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>a6b941ff50594bde8f487610201b1a64</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text3</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldNumberLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text3>\\r\\n                      <Text7 Ref=\\\"42\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,0.6,1.5,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>4bf6fb4dd17648b68cb9fdffc8b0c00e</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text7</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldCSICodeLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text7>\\r\\n                      <Text23 Ref=\\\"43\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,0.6,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>77b74529b1ad4c97a8686c8ac5e0471b</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text23</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.CSICodeShortLabel}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text23>\\r\\n                      <Text19 Ref=\\\"44\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <ClientRectangle>1.7,0.3,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>36fe86fcdaf24c2886431822248336c2</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text19</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.Number}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text19>\\r\\n                      <Text37 Ref=\\\"45\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>4,1.2,1.5,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>1ca5ec4c49424635b641c1a2c1a992d2</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text37</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldTimeEffectLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text37>\\r\\n                      <Text38 Ref=\\\"46\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>5.6,1.2,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>1c231a42c4504915a6cc092030c3888d</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text38</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.TimeEffect}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text38>\\r\\n                      <Text39 Ref=\\\"47\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>4,0.3,1.5,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>4992c158fe8b46bd9f7f09aabda8619d</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text39</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldDateLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text39>\\r\\n                      <Text40 Ref=\\\"48\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>5.6,0.3,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>9ae8f14bcd4a411197d2ea04882620f4</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text40</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.Date}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextFormat Ref=\\\"49\\\" type=\\\"DateFormat\\\" isKey=\\\"true\\\" />\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text40>\\r\\n                      <Text41 Ref=\\\"50\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>4,0.9,1.5,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>df9c0f875d074df085906ac8ed192191</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text41</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldReasonLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text41>\\r\\n                      <Text42 Ref=\\\"51\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <ClientRectangle>5.6,0.9,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>601ca52bf7be423894a05b5822d7220a</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text42</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.Reason}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text42>\\r\\n                      <Text11 Ref=\\\"52\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,1.5,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>f90190e782a24a5d900375aa07614134</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text11</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldReferenceLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text11>\\r\\n                      <Text26 Ref=\\\"53\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,1.5,6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>e443e829d6434addbc14eace490829da</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text26</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.ReferenceText}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Text26>\\r\\n                      <Text14 Ref=\\\"54\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,3,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>ccc50a8d86444f698a2d49f26b3b7255</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text14</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldOfficialResponderLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text14>\\r\\n                      <Text18 Ref=\\\"55\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,3,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>9e3856e0a3e644e1928f6c36f6fde385</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text18</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.OfficialResponderContactCompanyLabel}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text18>\\r\\n                      <Text43 Ref=\\\"56\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,3.8,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>6b86a81c08b148b8a155e61aed955d98</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text43</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldResponseLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text43>\\r\\n                      <Text44 Ref=\\\"57\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,3.8,6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>973c79ebd7154997b4f9647e5e6874b8</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text44</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.Response}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text44>\\r\\n                      <Text45 Ref=\\\"58\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>4,3,1.5,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>029a8be995934aa4882ccc01f6115824</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text45</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldDueDateLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text45>\\r\\n                      <Text46 Ref=\\\"59\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>0,3.3,1.6,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>51da1d5966e64a9bb5d312db2bdc9767</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text46</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>[FieldDateRespondedLabel]:</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text46>\\r\\n                      <Text47 Ref=\\\"60\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>5.6,3,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>1b370ff604594b8b8954f6e2c0bbe712</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text47</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.DueDate}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextFormat Ref=\\\"61\\\" type=\\\"DateFormat\\\" isKey=\\\"true\\\" />\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text47>\\r\\n                      <Text48 Ref=\\\"62\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanBreak>True</CanBreak>\\r\\n                        <CanGrow>True</CanGrow>\\r\\n                        <ClientRectangle>1.7,3.3,2.1,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>ae9e5de279a746cd80bd291bd68c5a9c</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text48</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <Text>{RFI.DateResponded}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextFormat Ref=\\\"63\\\" type=\\\"DateFormat\\\" isKey=\\\"true\\\" />\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text48>\\r\\n                      <Text68 Ref=\\\"64\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>0,4.7,2.2,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>f8f9804ec08a456bb9d14e2e1b83c944</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text68</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{IIF(String.IsNullOrEmpty(RFI.UniversalLookup1),\\\"\\\",\\\"[FieldUniversalLookup1Label]\\\")}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text68>\\r\\n                      <Text69 Ref=\\\"65\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>2.3,4.7,5.4,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>6a399070ad1c4e21b823c88abdf568d7</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text69</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{RFI.UniversalLookup1}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text69>\\r\\n                      <Text70 Ref=\\\"66\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>0,5,2.2,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>b3fa90b76252479f885e07fc045c770d</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text70</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{IIF(String.IsNullOrEmpty(RFI.UniversalLookup2),\\\"\\\",\\\"[FieldUniversalLookup2Label]\\\")}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text70>\\r\\n                      <Text71 Ref=\\\"67\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>2.3,5,5.4,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>dca0ff4b27f14baa80946ee3c926610a</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text71</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{RFI.UniversalLookup2}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Text71>\\r\\n                      <Text72 Ref=\\\"68\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>0,5.3,2.2,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>9ca65682acdd46f4a76712286bb91f87</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text72</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{IIF(String.IsNullOrEmpty(RFI.UniversalLookup3),\\\"\\\",\\\"[FieldUniversalLookup3Label]\\\")}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text72>\\r\\n                      <Text73 Ref=\\\"69\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>2.3,5.3,5.4,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>03265bda03014f2dba4dd14132db78b7</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text73</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{RFI.UniversalLookup3}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Text73>\\r\\n                      <Text74 Ref=\\\"70\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>0,5.6,2.2,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>c359a5d6c9dc44cdabbb25085c743343</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text74</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{IIF(String.IsNullOrEmpty(RFI.UniversalLookup4),\\\"\\\",\\\"[FieldUniversalLookup4Label]\\\")}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text74>\\r\\n                      <Text75 Ref=\\\"71\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>2.3,5.6,5.4,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>0750b98055f54effb819c611433b6997</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text75</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{RFI.UniversalLookup4}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Text75>\\r\\n                      <Text76 Ref=\\\"72\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>0,5.9,2.2,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldLabel</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                        <Guid>35cddaa22bf543ecb3598613856d5e48</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text76</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{IIF(String.IsNullOrEmpty(RFI.UniversalLookup5),\\\"\\\",\\\"[FieldUniversalLookup5Label]\\\")}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Text76>\\r\\n                      <Text77 Ref=\\\"73\\\" type=\\\"Text\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CanShrink>True</CanShrink>\\r\\n                        <ClientRectangle>2.3,5.9,5.4,0.2</ClientRectangle>\\r\\n                        <ComponentStyle>DataFieldData</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                        <Guid>5439d7c7fd2e402cac4d019561bd4523</Guid>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Text77</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"25\\\" />\\r\\n                        <ShiftMode>IncreasingSize, DecreasingSize</ShiftMode>\\r\\n                        <Text>{RFI.UniversalLookup5}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextOptions>,,,,WordWrap=True,A=0</TextOptions>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Text77>\\r\\n                    </Components>\\r\\n                    <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                    <DataRelationName isNull=\\\"true\\\" />\\r\\n                    <DataSourceName>RFI</DataSourceName>\\r\\n                    <FilterOn>False</FilterOn>\\r\\n                    <Filters isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                    <Hyperlink>http://www.google.com</Hyperlink>\\r\\n                    <Name>DataBand1</Name>\\r\\n                    <Page isRef=\\\"7\\\" />\\r\\n                    <Parent isRef=\\\"7\\\" />\\r\\n                    <Sort isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                  </DataBand1>\\r\\n                  <Table1 Ref=\\\"74\\\" type=\\\"Stimulsoft.Report.Components.Table.StiTable\\\" isKey=\\\"true\\\">\\r\\n                    <AutoWidth>Page</AutoWidth>\\r\\n                    <AutoWidthType>FullTable</AutoWidthType>\\r\\n                    <Brush>Transparent</Brush>\\r\\n                    <BusinessObjectGuid isNull=\\\"true\\\" />\\r\\n                    <ClientRectangle>0,8.2,7.72,1.2</ClientRectangle>\\r\\n                    <ColumnCount>4</ColumnCount>\\r\\n                    <Components isList=\\\"true\\\" count=\\\"16\\\">\\r\\n                      <Table1_Cell1 Ref=\\\"75\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>0,0,2,0.3</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial,9</Font>\\r\\n                        <ID>31</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell1</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell1>\\r\\n                      <Table1_Cell2 Ref=\\\"76\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>2,0,1.9,0.3</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial,9</Font>\\r\\n                        <ID>32</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell2</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell2>\\r\\n                      <Table1_Cell3 Ref=\\\"77\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>3.9,0,1.9,0.3</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial,9</Font>\\r\\n                        <ID>33</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell3</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell3>\\r\\n                      <Table1_Cell4 Ref=\\\"78\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>5.8,0,1.92,0.3</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial,9</Font>\\r\\n                        <ID>34</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell4</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell4>\\r\\n                      <Table1_Cell5 Ref=\\\"79\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CellDockStyle>Left</CellDockStyle>\\r\\n                        <ClientRectangle>0,0.3,2,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>HeaderSubTitleStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Enabled>False</Enabled>\\r\\n                        <Font>Arial Unicode MS,12</Font>\\r\\n                        <ID>25</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell5</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <ParentJoin>27</ParentJoin>\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>[AttributeReferencesLabel]</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell5>\\r\\n                      <Table1_Cell6 Ref=\\\"80\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;[105:105:105];1;Solid;False;4;[105:105:105]</Border>\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <ClientRectangle>2,0.3,1.9,0.3</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Enabled>False</Enabled>\\r\\n                        <Font>Arial Unicode MS,9</Font>\\r\\n                        <ID>28</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell6</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <ParentJoin>27</ParentJoin>\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell6>\\r\\n                      <Table1_Cell7 Ref=\\\"81\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;[105:105:105];1;Solid;False;4;[105:105:105]</Border>\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CellDockStyle>Left</CellDockStyle>\\r\\n                        <ClientRectangle>3.9,0.3,1.9,0.3</ClientRectangle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Enabled>False</Enabled>\\r\\n                        <Font>Arial Unicode MS,9</Font>\\r\\n                        <ID>26</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell7</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <ParentJoin>27</ParentJoin>\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell7>\\r\\n                      <Table1_Cell8 Ref=\\\"82\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Brush>Transparent</Brush>\\r\\n                        <CellDockStyle>Left</CellDockStyle>\\r\\n                        <ClientRectangle>0,0.3,7.72,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>HeaderSubTitleStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,12</Font>\\r\\n                        <ID>27</ID>\\r\\n                        <Join>True</Join>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"4\\\">\\r\\n                          <value>25</value>\\r\\n                          <value>28</value>\\r\\n                          <value>26</value>\\r\\n                          <value>27</value>\\r\\n                        </JoinCells>\\r\\n                        <JoinHeight>1</JoinHeight>\\r\\n                        <JoinWidth>4</JoinWidth>\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell8</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <ParentJoin>27</ParentJoin>\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>[AttributeReferencesLabel]</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Table1_Cell8>\\r\\n                      <Table1_Cell9 Ref=\\\"83\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>[128:163:183]</Brush>\\r\\n                        <ClientRectangle>0,0.6,2,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableHeaderStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11,Bold</Font>\\r\\n                        <Guid>80e464b97a3c4c4d9fda81bb7f8959c2</Guid>\\r\\n                        <ID>1</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell9</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>[FieldNameLabel]</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Table1_Cell9>\\r\\n                      <Table1_Cell10 Ref=\\\"84\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>[128:163:183]</Brush>\\r\\n                        <ClientRectangle>2,0.6,1.9,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableHeaderStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11,Bold</Font>\\r\\n                        <ID>29</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell10</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>[FieldTypeLabel]</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                      </Table1_Cell10>\\r\\n                      <Table1_Cell11 Ref=\\\"85\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>[128:163:183]</Brush>\\r\\n                        <ClientRectangle>3.9,0.6,1.9,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableHeaderStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11,Bold</Font>\\r\\n                        <Guid>10f24e86260f4c18a17420544a1aca1e</Guid>\\r\\n                        <ID>2</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell11</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>[FieldContributorLabel]</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Table1_Cell11>\\r\\n                      <Table1_Cell12 Ref=\\\"86\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>[128:163:183]</Brush>\\r\\n                        <ClientRectangle>5.8,0.6,1.92,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableHeaderStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11,Bold</Font>\\r\\n                        <Guid>8d5032118c484f03afba2158d94cd1b7</Guid>\\r\\n                        <ID>3</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell12</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>[FieldDateLabel]</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Table1_Cell12>\\r\\n                      <Table1_Cell13 Ref=\\\"87\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>0,0.9,2,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableCellStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11</Font>\\r\\n                        <Guid>b7221292071c4eacb26b3f31418e4b99</Guid>\\r\\n                        <ID>6</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell13</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>{Reference.Description}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Table1_Cell13>\\r\\n                      <Table1_Cell14 Ref=\\\"88\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>2,0.9,1.9,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableCellStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11</Font>\\r\\n                        <ID>30</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell14</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>{Reference.ReferenceType}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>Expression</Type>\\r\\n                      </Table1_Cell14>\\r\\n                      <Table1_Cell15 Ref=\\\"89\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>3.9,0.9,1.9,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableCellStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11</Font>\\r\\n                        <Guid>3072c2d80de04664ba9de6aff283ff86</Guid>\\r\\n                        <ID>7</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell15</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>{Reference.CreatedByUserName}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Table1_Cell15>\\r\\n                      <Table1_Cell16 Ref=\\\"90\\\" type=\\\"TableCell\\\" isKey=\\\"true\\\">\\r\\n                        <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                        <Brush>White</Brush>\\r\\n                        <ClientRectangle>5.8,0.9,1.92,0.3</ClientRectangle>\\r\\n                        <ComponentStyle>TableCellStyleName</ComponentStyle>\\r\\n                        <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Font>Arial Unicode MS,11</Font>\\r\\n                        <Guid>85e1cf350a4746e0884caf5db63fac96</Guid>\\r\\n                        <ID>8</ID>\\r\\n                        <JoinCells isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                        <Margins>0,0,0,0</Margins>\\r\\n                        <Name>Table1_Cell16</Name>\\r\\n                        <Page isRef=\\\"7\\\" />\\r\\n                        <Parent isRef=\\\"74\\\" />\\r\\n                        <Restrictions>AllowMove, AllowSelect, AllowChange</Restrictions>\\r\\n                        <Text>{Reference.CreatedDate}</Text>\\r\\n                        <TextBrush>Black</TextBrush>\\r\\n                        <TextFormat Ref=\\\"91\\\" type=\\\"CustomFormat\\\" isKey=\\\"true\\\">\\r\\n                          <StringFormat>g</StringFormat>\\r\\n                        </TextFormat>\\r\\n                        <Type>DataColumn</Type>\\r\\n                      </Table1_Cell16>\\r\\n                    </Components>\\r\\n                    <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                    <DataRelationName isNull=\\\"true\\\" />\\r\\n                    <DataSourceName>Reference</DataSourceName>\\r\\n                    <Filters isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                    <FooterPrintIfEmpty>False</FooterPrintIfEmpty>\\r\\n                    <Guid>8cce10296741439e8f63e62a6eea35d4</Guid>\\r\\n                    <HeaderPrintIfEmpty>False</HeaderPrintIfEmpty>\\r\\n                    <HeaderRowsCount>2</HeaderRowsCount>\\r\\n                    <MinHeight>0.2</MinHeight>\\r\\n                    <Name>Table1</Name>\\r\\n                    <NumberID>35</NumberID>\\r\\n                    <Page isRef=\\\"7\\\" />\\r\\n                    <Parent isRef=\\\"7\\\" />\\r\\n                    <RowCount>4</RowCount>\\r\\n                    <Sort isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                  </Table1>\\r\\n                </Components>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Guid>2a797e52637e4ad79bea498c7dd082c1</Guid>\\r\\n                <Margins>0.39,0.39,0.39,0.39</Margins>\\r\\n                <Name>Page1</Name>\\r\\n                <PageHeight>11</PageHeight>\\r\\n                <PageWidth>8.5</PageWidth>\\r\\n                <PaperSize>Letter</PaperSize>\\r\\n                <Report isRef=\\\"0\\\" />\\r\\n                <Watermark Ref=\\\"92\\\" type=\\\"Stimulsoft.Report.Components.StiWatermark\\\" isKey=\\\"true\\\">\\r\\n                  <Font>Arial Unicode MS,100</Font>\\r\\n                  <TextBrush>[50:0:0:0]</TextBrush>\\r\\n                </Watermark>\\r\\n              </Page1>\\r\\n            </Pages>\\r\\n            <ReferencedAssemblies isList=\\\"true\\\" count=\\\"8\\\">\\r\\n              <value>System.Dll</value>\\r\\n              <value>System.Drawing.Dll</value>\\r\\n              <value>System.Windows.Forms.Dll</value>\\r\\n              <value>System.Data.Dll</value>\\r\\n              <value>System.Xml.Dll</value>\\r\\n              <value>Stimulsoft.Controls.Dll</value>\\r\\n              <value>Stimulsoft.Base.Dll</value>\\r\\n              <value>Stimulsoft.Report.Dll</value>\\r\\n            </ReferencedAssemblies>\\r\\n            <ReportAlias>Report</ReportAlias>\\r\\n            <ReportChanged>3/22/2023 3:11:59 PM</ReportChanged>\\r\\n            <ReportCreated>4/26/2011 5:00:17 PM</ReportCreated>\\r\\n            <ReportGuid>bcd84e1d900a412280ba1d5bcc045335</ReportGuid>\\r\\n            <ReportName>Report</ReportName>\\r\\n            <ReportUnit>Inches</ReportUnit>\\r\\n            <ReportVersion>2020.2.1.0</ReportVersion>\\r\\n            <Script>\\r\\n    using System;\\r\\n    using System.Drawing;\\r\\n    using System.Windows.Forms;\\r\\n    using System.Data;\\r\\n    using Stimulsoft.Controls;\\r\\n    using Stimulsoft.Base.Drawing;\\r\\n    using Stimulsoft.Report;\\r\\n    using Stimulsoft.Report.Dialogs;\\r\\n    using Stimulsoft.Report.Components;\\r\\n\\r\\n    namespace Reports\\r\\n    {\\r\\n    public class Report : Stimulsoft.Report.StiReport\\r\\n    {\\r\\n    public Report()        {\\r\\n    this.InitializeComponent();\\r\\n    }\\r\\n\\r\\n    #region StiReport Designer generated code - do not modify\\r\\n\\t\\t#endregion StiReport Designer generated code - do not modify\\r\\n    }\\r\\n    }\\r\\n  </Script>\\r\\n            <ScriptLanguage>CSharp</ScriptLanguage>\\r\\n            <Styles isList=\\\"true\\\" count=\\\"19\\\">\\r\\n              <ReportTitleBandStyleName Ref=\\\"93\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,8</Font>\\r\\n                <Name>ReportTitleBandStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </ReportTitleBandStyleName>\\r\\n              <HeaderTitleStyleName Ref=\\\"94\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,24</Font>\\r\\n                <Name>HeaderTitleStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </HeaderTitleStyleName>\\r\\n              <HeaderSubTitleStyleName Ref=\\\"95\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,12</Font>\\r\\n                <Name>HeaderSubTitleStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </HeaderSubTitleStyleName>\\r\\n              <GroupHeaderBandStyleName Ref=\\\"96\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>[195:183:178]</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,8</Font>\\r\\n                <Name>GroupHeaderBandStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </GroupHeaderBandStyleName>\\r\\n              <GroupHeaderLabelStyleName Ref=\\\"97\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,14,Bold</Font>\\r\\n                <Name>GroupHeaderLabelStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>White</TextBrush>\\r\\n              </GroupHeaderLabelStyleName>\\r\\n              <ReportDataTableStyleName Ref=\\\"98\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,8</Font>\\r\\n                <Name>ReportDataTableStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </ReportDataTableStyleName>\\r\\n              <TableHeaderStyleName Ref=\\\"99\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                <Brush>[128:163:183]</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,11,Bold</Font>\\r\\n                <Name>TableHeaderStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </TableHeaderStyleName>\\r\\n              <TableCellStyleName Ref=\\\"100\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Border>All;Black;1;Solid;False;4;Black</Border>\\r\\n                <Brush>White</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,11</Font>\\r\\n                <Name>TableCellStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </TableCellStyleName>\\r\\n              <GroupFooterBandStyleName Ref=\\\"101\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,8</Font>\\r\\n                <Name>GroupFooterBandStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </GroupFooterBandStyleName>\\r\\n              <GroupFooterLabelStyleName Ref=\\\"102\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,12,Bold</Font>\\r\\n                <Name>GroupFooterLabelStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </GroupFooterLabelStyleName>\\r\\n              <ReportSummaryBandStyleName Ref=\\\"103\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,8</Font>\\r\\n                <Name>ReportSummaryBandStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </ReportSummaryBandStyleName>\\r\\n              <ReportSummaryLabelStyleName Ref=\\\"104\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,14,Bold</Font>\\r\\n                <Name>ReportSummaryLabelStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </ReportSummaryLabelStyleName>\\r\\n              <ReportPageFooterBandStyleName Ref=\\\"105\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,8</Font>\\r\\n                <Name>ReportPageFooterBandStyleName</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </ReportPageFooterBandStyleName>\\r\\n              <PoweredyByKahuaStyleNamePart1 Ref=\\\"106\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,10</Font>\\r\\n                <Name>PoweredyByKahuaStyleNamePart1</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </PoweredyByKahuaStyleNamePart1>\\r\\n              <PoweredyByKahuaStyleNamePart2 Ref=\\\"107\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,20</Font>\\r\\n                <Name>PoweredyByKahuaStyleNamePart2</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>[255:62:0]</TextBrush>\\r\\n              </PoweredyByKahuaStyleNamePart2>\\r\\n              <PageInfo Ref=\\\"108\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,10</Font>\\r\\n                <Name>PageInfo</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </PageInfo>\\r\\n              <DataFieldLabel Ref=\\\"109\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,10,Bold,Point,False,0</Font>\\r\\n                <Name>DataFieldLabel</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </DataFieldLabel>\\r\\n              <DataFieldData Ref=\\\"110\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,10,Regular,Point,False,0</Font>\\r\\n                <Name>DataFieldData</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </DataFieldData>\\r\\n              <TimeZoneLabel Ref=\\\"111\\\" type=\\\"Stimulsoft.Report.StiStyle\\\" isKey=\\\"true\\\">\\r\\n                <Brush>Transparent</Brush>\\r\\n                <Conditions isList=\\\"true\\\" count=\\\"0\\\" />\\r\\n                <Font>Arial Unicode MS,9</Font>\\r\\n                <Name>TimeZoneLabel</Name>\\r\\n                <NegativeTextBrush>Red</NegativeTextBrush>\\r\\n                <TextBrush>Black</TextBrush>\\r\\n              </TimeZoneLabel>\\r\\n            </Styles>\\r\\n          </StiSerializer>\\r\\n        </Designer>\\r\\n        <Wizard>\\r\\n          <KahuaReport>\\r\\n            <Layout ReportTitle=\\\"\\\" PaperSize=\\\"EightAndHalfByEleven\\\" Orientation=\\\"Portrait\\\" ApplicationName=\\\"\\\" Name=\\\"RFIViewReport\\\">\\r\\n              <Margins>\\r\\n                <Bottom>0</Bottom>\\r\\n                <Left>0</Left>\\r\\n                <Right>0</Right>\\r\\n                <Top>0</Top>\\r\\n              </Margins>\\r\\n            </Layout>\\r\\n            <Fields />\\r\\n            <Sorting />\\r\\n            <Filters>\\r\\n              <Where />\\r\\n            </Filters>\\r\\n            <Calculations />\\r\\n          </KahuaReport>\\r\\n        </Wizard>\\r\\n        <Parameters>\\r\\n          <Parameter DataType=\\\"Text\\\" ExecutionDataType=\\\"Text\\\" Interactive=\\\"False\\\" Name=\\\"PartitionId\\\" EntitySource=\\\"Default\\\" InputType=\\\"Default\\\">{PartitionId}</Parameter>\\r\\n          <Parameter DataType=\\\"Text\\\" ExecutionDataType=\\\"Text\\\" Interactive=\\\"False\\\" Name=\\\"EntityId\\\" EntitySource=\\\"Default\\\" InputType=\\\"Default\\\"></Parameter>\\r\\n        </Parameters>\\r\\n        <DataSourceSchema>\\r\\n          <xs:schema id=\\\"Schema\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\r\\n            <xs:element name=\\\"Schema\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\" msdata:EnforceConstraints=\\\"False\\\">\\r\\n              <xs:complexType>\\r\\n                <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\r\\n                  <xs:element name=\\\"RFI\\\">\\r\\n                    <xs:complexType>\\r\\n                      <xs:sequence>\\r\\n                        <xs:element name=\\\"Id\\\" type=\\\"xs:int\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Number\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Subject\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Status\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"CostEffect\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"CSICodeShortLabel\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"TimeEffect\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"ReferenceText\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Date\\\" type=\\\"xs:dateTime\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"LocationShortLabel\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"AuthorContactCompanyLabel\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Reason\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Question\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"ProposedSolution\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"DueDate\\\" type=\\\"xs:dateTime\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"DateResponded\\\" type=\\\"xs:dateTime\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"OfficialResponderContactCompanyLabel\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Response\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"UniversalLookup1\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"UniversalLookup2\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"UniversalLookup3\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"UniversalLookup4\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"UniversalLookup5\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"RFI_Id\\\" type=\\\"xs:int\\\" minOccurs=\\\"0\\\" />\\r\\n                      </xs:sequence>\\r\\n                    </xs:complexType>\\r\\n                  </xs:element>\\r\\n                  <xs:element name=\\\"Reference\\\">\\r\\n                    <xs:complexType>\\r\\n                      <xs:sequence>\\r\\n                        <xs:element name=\\\"Id\\\" type=\\\"xs:int\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"CreatedByUserName\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"Description\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"CreatedDate\\\" type=\\\"xs:dateTime\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"References_Id\\\" type=\\\"xs:int\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"ReferenceType\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\r\\n                      </xs:sequence>\\r\\n                    </xs:complexType>\\r\\n                  </xs:element>\\r\\n                  <xs:element name=\\\"References\\\">\\r\\n                    <xs:complexType>\\r\\n                      <xs:sequence>\\r\\n                        <xs:element name=\\\"References_Id\\\" type=\\\"xs:int\\\" minOccurs=\\\"0\\\" />\\r\\n                        <xs:element name=\\\"RFI_Id\\\" type=\\\"xs:int\\\" minOccurs=\\\"0\\\" />\\r\\n                      </xs:sequence>\\r\\n                    </xs:complexType>\\r\\n                  </xs:element>\\r\\n                </xs:choice>\\r\\n              </xs:complexType>\\r\\n            </xs:element>\\r\\n            <xs:annotation>\\r\\n              <xs:appinfo>\\r\\n                <msdata:Relationship name=\\\"RFI_References\\\" msdata:parent=\\\"RFI\\\" msdata:child=\\\"References\\\" msdata:parentkey=\\\"RFI_Id\\\" msdata:childkey=\\\"RFI_Id\\\" />\\r\\n                <msdata:Relationship name=\\\"ReferenceRelation\\\" msdata:parent=\\\"References\\\" msdata:child=\\\"Reference\\\" msdata:parentkey=\\\"References_Id\\\" msdata:childkey=\\\"References_Id\\\" />\\r\\n              </xs:appinfo>\\r\\n            </xs:annotation>\\r\\n          </xs:schema>\\r\\n        </DataSourceSchema>\\r\\n        <DataSources>\\r\\n          <DataSource Name=\\\"kahua_AEC_RFI.RFIViewReportData\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\">\\r\\n            <Parameters>\\r\\n              <Parameter Name=\\\"EntityId\\\" />\\r\\n            </Parameters>\\r\\n            <Select>\\r\\n              <Attribute Name=\\\"RFI.Id\\\" />\\r\\n              <Attribute Name=\\\"RFI.Number\\\" />\\r\\n              <Attribute Name=\\\"RFI.Subject\\\" />\\r\\n              <Attribute Name=\\\"RFI.CostEffect\\\" />\\r\\n              <Attribute Name=\\\"RFI.TimeEffect\\\" />\\r\\n              <Attribute Name=\\\"RFI.Date\\\" />\\r\\n              <Attribute Name=\\\"RFI.Status\\\" />\\r\\n              <Attribute Name=\\\"RFI.CSICode.ShortLabel\\\" />\\r\\n              <Attribute Name=\\\"RFI.Location.ShortLabel\\\" />\\r\\n              <Attribute Name=\\\"RFI.Author.ContactCompanyLabel\\\" />\\r\\n              <Attribute Name=\\\"RFI.Reason\\\" />\\r\\n              <Attribute Name=\\\"RFI.Question\\\" />\\r\\n              <Attribute Name=\\\"RFI.ProposedSolution\\\" />\\r\\n              <Attribute Name=\\\"RFI.OfficialResponder.ContactCompanyLabel\\\" />\\r\\n              <Attribute Name=\\\"RFI.DueDate\\\" />\\r\\n              <Attribute Name=\\\"RFI.DateResponded\\\" />\\r\\n              <Attribute Name=\\\"RFI.Response\\\" />\\r\\n              <Attribute Name=\\\"RFI.Reference\\\" Alias=\\\"RFI.ReferenceText\\\" DataType=\\\"Text\\\" />\\r\\n              <Attribute Name=\\\"RFI.OutwardReferences\\\" SelectTemplate=\\\"kahua_Reference.ReferenceForReport\\\" />\\r\\n              <Attribute Name=\\\"RFI.WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n              <Attribute Name=\\\"RFI.Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n              <Attribute Name=\\\"RFI.RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n              <Attribute Name=\\\"RFI.RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n              <Attribute Name=\\\"RFI.UniversalLookup1\\\" />\\r\\n              <Attribute Name=\\\"RFI.UniversalLookup2\\\" />\\r\\n              <Attribute Name=\\\"RFI.UniversalLookup3\\\" />\\r\\n              <Attribute Name=\\\"RFI.UniversalLookup4\\\" />\\r\\n              <Attribute Name=\\\"RFI.UniversalLookup5\\\" />\\r\\n            </Select>\\r\\n            <From>\\r\\n              <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Alias=\\\"RFI\\\" Name=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n            </From>\\r\\n            <Where>\\r\\n              <Attribute Name=\\\"RFI.Id\\\" ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                <Equals Parameter=\\\"EntityId\\\" />\\r\\n              </Attribute>\\r\\n            </Where>\\r\\n          </DataSource>\\r\\n        </DataSources>\\r\\n        <ReportSettings />\\r\\n      </LegacyReport.ReportXml>\\r\\n    </LegacyReport>\\r\\n    <DataSourceReport DataSourceName=\\\"RFIQueryDataSource\\\" Name=\\\"DetailedRFIReportDS\\\" Title=\\\"[RFIDetailedReportLabel]\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"Report\\\" Author=\\\"Kahua\\\" Description=\\\"[RFIDetailedReportDesc]\\\">\\r\\n      <ReportXml>\\r\\n        <XtraReportsLayoutSerializer SerializerVersion=\\\"23.2.5.0\\\" Ref=\\\"1\\\" ControlType=\\\"DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a\\\" Name=\\\"Report1\\\" Landscape=\\\"true\\\" Margins=\\\"0, 0, 0, 0\\\" PageWidth=\\\"1100\\\" PageHeight=\\\"850\\\" Version=\\\"23.2\\\" DataSource=\\\"#Ref-0\\\">\\r\\n          <Parameters>\\r\\n            <Item1 Ref=\\\"3\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionLabel]\\\" Name=\\\"PartitionLabel\\\" />\\r\\n            <Item2 Ref=\\\"4\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionPath]\\\" Name=\\\"PartitionPath\\\" />\\r\\n            <Item3 Ref=\\\"5\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ReportTitle]\\\" Name=\\\"ReportTitle\\\" />\\r\\n            <Item4 Ref=\\\"6\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CompanyLogo]\\\" Name=\\\"CompanyLogo\\\" />\\r\\n            <Item5 Ref=\\\"8\\\" Visible=\\\"false\\\" Name=\\\"ProjectLogo\\\" Type=\\\"#Ref-7\\\" />\\r\\n            <Item6 Ref=\\\"9\\\" Visible=\\\"false\\\" ValueInfo=\\\"[DomainLabel]\\\" Name=\\\"DomainLabel\\\" />\\r\\n            <Item7 Ref=\\\"10\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneLong]\\\" Name=\\\"CurrentTimeZoneLong\\\" />\\r\\n            <Item8 Ref=\\\"11\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneShort]\\\" Name=\\\"CurrentTimeZoneShort\\\" />\\r\\n            <Item9 Ref=\\\"12\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ItemsCount]\\\" Name=\\\"ItemsCount\\\" />\\r\\n            <Item10 Ref=\\\"13\\\" Visible=\\\"false\\\" ValueInfo=\\\"[RunInfo]\\\" Name=\\\"RunInfo\\\" />\\r\\n            <Item11 Ref=\\\"14\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ListName]\\\" Name=\\\"ListName\\\" />\\r\\n          </Parameters>\\r\\n          <Bands>\\r\\n            <Item1 Ref=\\\"15\\\" ControlType=\\\"TopMarginBand\\\" Name=\\\"TopMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item2 Ref=\\\"16\\\" ControlType=\\\"DetailBand\\\" Name=\\\"Detail1\\\" HeightF=\\\"46\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n              <SortFields>\\r\\n                <Item1 Ref=\\\"17\\\" FieldName=\\\"Number\\\" SortOrder=\\\"Descending\\\" />\\r\\n              </SortFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"18\\\" ControlType=\\\"XRTable\\\" Name=\\\"table1\\\" SizeF=\\\"1038.5715,46\\\" LocationFloat=\\\"29.86111,0\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"19\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow1\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"20\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell1\\\" Weight=\\\"0.5822947644816135\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"21\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Number]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"22\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"23\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell2\\\" Weight=\\\"1.5978547917532386\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"24\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Subject]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"25\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"26\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell3\\\" Weight=\\\"1.178595930047602\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"27\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"JOIN([Location].Multiple([ShortLabel]), ', ')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"28\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"29\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell4\\\" Weight=\\\"1.275969201758187\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"30\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[OfficialResponder].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"31\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"32\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell5\\\" Weight=\\\"0.6563211223474713\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"33\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Date]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"34\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"35\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell6\\\" Weight=\\\"0.7758246918364995\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"36\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateResponded]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"37\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"38\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell7\\\" Weight=\\\"0.9331394977753942\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"39\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Status]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"40\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                    <Item2 Ref=\\\"41\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow2\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"42\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell8\\\" Weight=\\\"0.5653523257780211\\\" Text=\\\"Question:\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"43\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Concat(Localize('FieldQuestionLabel'), ':')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"44\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"45\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell9\\\" Weight=\\\"2.950593334937731\\\" Text=\\\"tableCell9\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"46\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Question]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"47\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"48\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell10\\\" Weight=\\\"0.6554843313706095\\\" Text=\\\"Response:\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"49\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Concat(Localize('FieldResponseLabel'), ':')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"50\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"51\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell11\\\" Weight=\\\"2.828570007913636\\\" Text=\\\"tableCell11\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"52\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Response]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"53\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                      </Cells>\\r\\n                    </Item2>\\r\\n                  </Rows>\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"54\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item2>\\r\\n            <Item3 Ref=\\\"55\\\" ControlType=\\\"BottomMarginBand\\\" Name=\\\"BottomMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item4 Ref=\\\"56\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader1\\\" RepeatEveryPage=\\\"true\\\" HeightF=\\\"34.805557\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"24,24,4,4,100\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"57\\\" ControlType=\\\"XRTable\\\" Name=\\\"table2\\\" SizeF=\\\"1038.5715,23\\\" LocationFloat=\\\"29.86111,11.805557\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"58\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow3\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"59\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell12\\\" Weight=\\\"0.5815523521012259\\\" Text=\\\"Number\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"60\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldNumberLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"61\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"62\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell13\\\" Weight=\\\"1.6047423611321863\\\" Text=\\\"Subject&#xD;&#xA;\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"63\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldSubjectLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"64\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"65\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell14\\\" Weight=\\\"1.177093249011572\\\" Text=\\\"Location\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"66\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldLocationLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"67\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"68\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell15\\\" Weight=\\\"1.2743423730187002\\\" Text=\\\"Primary Responder\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"69\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldOfficialResponderLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"70\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"71\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell16\\\" Weight=\\\"0.6554843313706105\\\" Text=\\\"Date\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"72\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"73\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"74\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell17\\\" Weight=\\\"0.7748355341735994\\\" Text=\\\"Responded\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"75\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateRespondedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"76\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"77\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell18\\\" Weight=\\\"0.9319497991921093\\\" Text=\\\"Status\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"78\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldStatusLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"79\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"80\\\" UsePadding=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"81\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item4>\\r\\n          </Bands>\\r\\n          <StyleSheet>\\r\\n            <Item1 Ref=\\\"82\\\" Name=\\\"Kahua_Report_Title1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"0,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 22pt, style=Bold\\\" ForeColor=\\\"255,109,121,127\\\" Sides=\\\"None\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item2 Ref=\\\"83\\\" Name=\\\"Kahua_Report_Title2\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 12pt, style=Italic, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item3 Ref=\\\"84\\\" Name=\\\"Kahua_Report_Title_Line\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" BackColor=\\\"Transparent\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item4 Ref=\\\"85\\\" Name=\\\"Kahua_Report_Summary\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item5 Ref=\\\"86\\\" Name=\\\"Kahua_Page_Header\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,109,121,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item6 Ref=\\\"87\\\" Name=\\\"Kahua_Page_Footer\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 11pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item7 Ref=\\\"88\\\" Name=\\\"Kahua_Group_Header1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" BorderColor=\\\"255,140,193,205\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n            <Item8 Ref=\\\"89\\\" Name=\\\"Kahua_Group_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item9 Ref=\\\"90\\\" Name=\\\"Kahua_Header1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BackColor=\\\"255,177,213,222\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item10 Ref=\\\"91\\\" Name=\\\"Kahua_Data1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"5,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Center;0;None;Character;Default\\\" TextAlignment=\\\"MiddleLeft\\\" />\\r\\n            <Item11 Ref=\\\"92\\\" Name=\\\"Kahua_Data1_Odd\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item12 Ref=\\\"93\\\" Name=\\\"Kahua_Data1_Even\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"255,238,240,240\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item13 Ref=\\\"94\\\" Name=\\\"Kahua_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item14 Ref=\\\"95\\\" Name=\\\"Kahua_Page_Footer_DateTime\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,127,127,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item15 Ref=\\\"96\\\" Name=\\\"Kahua_Page_Footer_PoweredBy\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item16 Ref=\\\"97\\\" Name=\\\"Kahua_Url\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Underline\\\" ForeColor=\\\"255,0,0,100\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n          </StyleSheet>\\r\\n          <ComponentStorage>\\r\\n            <Item1 Ref=\\\"0\\\" ObjectType=\\\"DevExpress.DataAccess.Json.JsonDataSource,DevExpress.DataAccess.v23.2\\\" Name=\\\"RFIQueryDataSource\\\" Base64=\\\"PEpzb25EYXRhU291cmNlIE5hbWU9IlJGSVF1ZXJ5RGF0YVNvdXJjZSI+PFNjaGVtYT48Tm9kZSBOYW1lPSJSRkkiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZEJ5IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlzY2lwbGluZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJGSVJlZmVyZW5jZU51bWJlcjEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUkZJUmVmZXJlbmNlTnVtYmVyMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWJDb250cmFjdG9yTnVtYmVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik51bWJlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3ViamVjdCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQcmlvcml0eSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdGF0dXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXV0aG9yIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNvdXJjZVJGSSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDU0lDb2RlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc1Jvb3QiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvZGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGVzY3JpcHRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXRlbXNDb3VudCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcmVudFBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29kZURlc2NyaXB0aW9uTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJMb2NhdGlvbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJBcnJheSI+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0YVNjb3BlX0lzRG9tYWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJRUkNvZGVDb3VudCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlFSQ29kZUluZGljYXRvciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvbmdMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEZXRhaWxMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcHBOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZsb29yVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJab25lVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQcm9qZWN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaXRlTmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5lYXJVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcmVhVW5pdHMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVm9sdW1lVW5pdHMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXJlYU1lYXN1cmVtZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBoYXNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVsZXZhdGlvbiIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIZWlnaHQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUm9vbVRhZyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2FibGVIZWlnaHQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iR3Jvc3NBcmVhIiBUeXBlPSJTeXN0ZW0uRG91YmxlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5ldEFyZWEiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFyZW50UGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4dElkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3RhdHVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJDb3N0RWZmZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvc3RBbW91bnQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpbWVFZmZlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTnVtYmVyT2ZEYXlzIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVmZXJlbmNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlF1ZXN0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb3Bvc2VkU29sdXRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXNzaWduZWRUbyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaXJzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGFzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWlkZGxlTmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQcmVmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3VmZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpdGxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRW1wbG95ZWUiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBlcnNvbklkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVtYWlsQWRkcmVzcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYWNlYm9vayIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUd2l0dGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmtlZEluIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpcmVjdCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2JpbGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmF4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluVXNlciIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5BZG1pbiIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNJblN5bmNXaXRoQ29tbXVuaXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc1B1Ymxpc2hlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlRG9tYWluSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY2NvdW50SW52aXRhdGlvblNlbnREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjdGl2YXRpb25EYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RDb21wYW55TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdEZ1bGxOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGFueUNvbnRhY3RMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvbmdMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEZXRhaWxMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQbGFuR3JpZEFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaWVsZFdpcmVBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJPd25lclJlcHJlc2VudGF0aXZlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNlbnRUb093bmVyRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik93bmVyUmVzcG9uZGVkRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik93bmVyUmVtYXJrcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJPZmZpY2lhbFJlc3BvbmRlciIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaXJzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGFzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWlkZGxlTmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQcmVmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3VmZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpdGxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRW1wbG95ZWUiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBlcnNvbklkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVtYWlsQWRkcmVzcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYWNlYm9vayIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUd2l0dGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmtlZEluIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpcmVjdCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2JpbGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmF4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluVXNlciIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5BZG1pbiIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNJblN5bmNXaXRoQ29tbXVuaXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc1B1Ymxpc2hlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlRG9tYWluSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY2NvdW50SW52aXRhdGlvblNlbnREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjdGl2YXRpb25EYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RDb21wYW55TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdEZ1bGxOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGFueUNvbnRhY3RMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvbmdMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEZXRhaWxMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQbGFuR3JpZEFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaWVsZFdpcmVBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJBdXRvc2VuZFRvT2ZmaWNpYWxSZXNwb25kZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RydWN0aW9uc1RvT2ZmaWNpYWxSZXNwb25kZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZVNlbnQiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEdWVEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZVJlc3BvbmRlZCIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbnNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dG9zZW5kVG9SZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0cnVjdGlvbnNUb1Jlc3BvbmRlcnMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVzcG9uZGVyc0NhbkFkZFJlc3BvbmRlcnMiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbmRlcnNTZWVBbGxSZXNwb25zZXMiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGlmeUFsbFJlc3BvbmRlcnMiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzZVNlbmREaWFsb2ciIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzZVRhc2tXb3JrZmxvdyIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5UmV2aWV3UGVyaW9kIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpbWFyeVJldmlld1BlcmlvZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IldvcmtmbG93U3RlcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25kZXJzIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcHBOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iUmVzcG9uc2VTZWNvbmRhcnkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hlZXREZXRhaWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5Q29tbWVudHMiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0Nvbm5lY3RUYXJnZXQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tbWVudENyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJQcm9qZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld1N0YXJ0RGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld0VuZERhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXNjbGFpbWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb21wdFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5Gb3JDbGFyaWZpY2F0aW9uUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY2FsbFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5SZWFzb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya2Zsb3dPcGVyYXRpb25UYWciIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya1N1c3BlbmRlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGxldGVkRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJvb3RDYXVzZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVbml2ZXJzYWxMb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVuaXZlcnNhbExvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVW5pdmVyc2FsTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVbml2ZXJzYWxMb29rdXA0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVuaXZlcnNhbExvb2t1cDUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjwvU2NoZW1hPjwvSnNvbkRhdGFTb3VyY2U+\\\" />\\r\\n          </ComponentStorage>\\r\\n          <ObjectStorage>\\r\\n            <Item1 ObjectType=\\\"DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v23.2\\\" Ref=\\\"7\\\" Content=\\\"System.Drawing.Image\\\" Type=\\\"System.Type\\\" />\\r\\n          </ObjectStorage>\\r\\n        </XtraReportsLayoutSerializer>\\r\\n      </ReportXml>\\r\\n    </DataSourceReport>\\r\\n    <DataSourceReport DataSourceName=\\\"RFIQueryDataSource\\\" Name=\\\"RFILogDS\\\" Title=\\\"[RFILogReportTitle]\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"Report\\\" Author=\\\"Kahua\\\" Description=\\\"[RFILogReportDescription]\\\">\\r\\n      <ReportXml>\\r\\n        <XtraReportsLayoutSerializer SerializerVersion=\\\"23.2.5.0\\\" Ref=\\\"1\\\" ControlType=\\\"DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a\\\" Name=\\\"Report1\\\" Landscape=\\\"true\\\" Margins=\\\"0, 0, 0, 0\\\" PageWidth=\\\"1100\\\" PageHeight=\\\"850\\\" Version=\\\"23.2\\\" DataSource=\\\"#Ref-0\\\">\\r\\n          <Parameters>\\r\\n            <Item1 Ref=\\\"3\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionLabel]\\\" Name=\\\"PartitionLabel\\\" />\\r\\n            <Item2 Ref=\\\"4\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionPath]\\\" Name=\\\"PartitionPath\\\" />\\r\\n            <Item3 Ref=\\\"5\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ReportTitle]\\\" Name=\\\"ReportTitle\\\" />\\r\\n            <Item4 Ref=\\\"6\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CompanyLogo]\\\" Name=\\\"CompanyLogo\\\" />\\r\\n            <Item5 Ref=\\\"8\\\" Visible=\\\"false\\\" Name=\\\"ProjectLogo\\\" Type=\\\"#Ref-7\\\" />\\r\\n            <Item6 Ref=\\\"9\\\" Visible=\\\"false\\\" ValueInfo=\\\"[DomainLabel]\\\" Name=\\\"DomainLabel\\\" />\\r\\n            <Item7 Ref=\\\"10\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneLong]\\\" Name=\\\"CurrentTimeZoneLong\\\" />\\r\\n            <Item8 Ref=\\\"11\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneShort]\\\" Name=\\\"CurrentTimeZoneShort\\\" />\\r\\n            <Item9 Ref=\\\"12\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ItemsCount]\\\" Name=\\\"ItemsCount\\\" />\\r\\n            <Item10 Ref=\\\"13\\\" Visible=\\\"false\\\" ValueInfo=\\\"[RunInfo]\\\" Name=\\\"RunInfo\\\" />\\r\\n            <Item11 Ref=\\\"14\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ListName]\\\" Name=\\\"ListName\\\" />\\r\\n          </Parameters>\\r\\n          <CalculatedFields>\\r\\n            <Item1 Ref=\\\"15\\\" Name=\\\"DateSubmittedCalc\\\" FieldType=\\\"DateTime\\\" DisplayName=\\\"DateSubmitted\\\" Expression=\\\"Iif( !IsNullOrEmpty([OwnerRepresentative]), [SentToOwnerDate], [DateSent] )\\\" />\\r\\n            <Item2 Ref=\\\"16\\\" Name=\\\"DaysOutstandingCalc\\\" FieldType=\\\"Int32\\\" DisplayName=\\\"DaysOutstanding\\\" Expression=\\\"Iif( !IsNullOrEmpty([OwnerRepresentative]), Iif( IsNull([OwnerRespondedDate]), DateDiffDay([SentToOwnerDate], Today()), DateDiffDay([SentToOwnerDate], [OwnerRespondedDate]) ), Iif( IsNull([DateResponded]), DateDiffDay([DateSent], Today()) , DateDiffDay([DateSent], [DateResponded])) )&#xD;&#xA;\\\" />\\r\\n          </CalculatedFields>\\r\\n          <Bands>\\r\\n            <Item1 Ref=\\\"17\\\" ControlType=\\\"TopMarginBand\\\" Name=\\\"TopMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item2 Ref=\\\"18\\\" ControlType=\\\"DetailBand\\\" Name=\\\"Detail1\\\" HeightF=\\\"32\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n              <SortFields>\\r\\n                <Item1 Ref=\\\"19\\\" FieldName=\\\"Number\\\" SortOrder=\\\"Descending\\\" />\\r\\n              </SortFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"20\\\" ControlType=\\\"XRTable\\\" Name=\\\"table1\\\" SizeF=\\\"1038.8208,32\\\" LocationFloat=\\\"29.861109,0\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" BorderWidth=\\\"0\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"21\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow1\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"22\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell1\\\" Weight=\\\"0.7198440987800901\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"23\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Number]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"24\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"25\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell8\\\" Weight=\\\"0.7368986217206305\\\" Text=\\\"tableCell8\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"26\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Priority]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"27\\\" UseFont=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"28\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell2\\\" Weight=\\\"2.180844401835558\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"29\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Subject]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"30\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"31\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell4\\\" Weight=\\\"1.152743313440111\\\" TextAlignment=\\\"MiddleLeft\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"32\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[AssignedTo].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"33\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"34\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell5\\\" Weight=\\\"0.7795470106655472\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"35\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateSubmittedCalc]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"36\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"37\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell6\\\" Weight=\\\"0.7758246918364995\\\" TextFormatString=\\\"{0:#}\\\" TextAlignment=\\\"MiddleCenter\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"38\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DaysOutstandingCalc]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"39\\\" UseFont=\\\"false\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"40\\\" UseBorderWidth=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"41\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item2>\\r\\n            <Item3 Ref=\\\"42\\\" ControlType=\\\"BottomMarginBand\\\" Name=\\\"BottomMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item4 Ref=\\\"43\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader1\\\" RepeatEveryPage=\\\"true\\\" HeightF=\\\"34.11111\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"24,24,4,4,100\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"44\\\" ControlType=\\\"XRTable\\\" Name=\\\"table2\\\" SizeF=\\\"1038.8208,23\\\" LocationFloat=\\\"29.861109,11.111112\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"45\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow3\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"46\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell12\\\" Weight=\\\"0.7217905490323601\\\" Text=\\\"Number\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"47\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldNumberLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"48\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"49\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell3\\\" Weight=\\\"0.7404715819084192\\\" Text=\\\"Priority\\\" TextAlignment=\\\"MiddleLeft\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"50\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldPriorityLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"51\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"52\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell13\\\" Weight=\\\"2.1882285229096565\\\" Text=\\\"Subject\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"53\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldSubjectLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"54\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"55\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell15\\\" Weight=\\\"1.1512735946185506\\\" Text=\\\"Assigned To\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"56\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldAssignedToLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"57\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"58\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell16\\\" Weight=\\\"0.7788613333547877\\\" Text=\\\"Date Submitted\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"59\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateSubmittedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"60\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"61\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell17\\\" Weight=\\\"0.7748355341735994\\\" Text=\\\"Days Outstanding\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"62\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDaysOutstandingLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"63\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"64\\\" UsePadding=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"65\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item4>\\r\\n          </Bands>\\r\\n          <StyleSheet>\\r\\n            <Item1 Ref=\\\"66\\\" Name=\\\"Kahua_Report_Title1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"0,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 22pt, style=Bold\\\" ForeColor=\\\"255,109,121,127\\\" Sides=\\\"None\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item2 Ref=\\\"67\\\" Name=\\\"Kahua_Report_Title2\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 12pt, style=Italic, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item3 Ref=\\\"68\\\" Name=\\\"Kahua_Report_Title_Line\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" BackColor=\\\"Transparent\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item4 Ref=\\\"69\\\" Name=\\\"Kahua_Report_Summary\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item5 Ref=\\\"70\\\" Name=\\\"Kahua_Page_Header\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,109,121,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item6 Ref=\\\"71\\\" Name=\\\"Kahua_Page_Footer\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 11pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item7 Ref=\\\"72\\\" Name=\\\"Kahua_Group_Header1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" BorderColor=\\\"255,140,193,205\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n            <Item8 Ref=\\\"73\\\" Name=\\\"Kahua_Group_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item9 Ref=\\\"74\\\" Name=\\\"Kahua_Header1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" BackColor=\\\"255,177,213,222\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item10 Ref=\\\"75\\\" Name=\\\"Kahua_Data1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"5,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Center;0;None;Character;Default\\\" TextAlignment=\\\"MiddleLeft\\\" />\\r\\n            <Item11 Ref=\\\"76\\\" Name=\\\"Kahua_Data1_Odd\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item12 Ref=\\\"77\\\" Name=\\\"Kahua_Data1_Even\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"255,238,240,240\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item13 Ref=\\\"78\\\" Name=\\\"Kahua_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item14 Ref=\\\"79\\\" Name=\\\"Kahua_Page_Footer_DateTime\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,127,127,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item15 Ref=\\\"80\\\" Name=\\\"Kahua_Page_Footer_PoweredBy\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item16 Ref=\\\"81\\\" Name=\\\"Kahua_Url\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Underline\\\" ForeColor=\\\"255,0,0,100\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n          </StyleSheet>\\r\\n          <ComponentStorage>\\r\\n            <Item1 Ref=\\\"0\\\" ObjectType=\\\"DevExpress.DataAccess.Json.JsonDataSource,DevExpress.DataAccess.v23.2\\\" Name=\\\"RFIQueryDataSource\\\" Base64=\\\"PEpzb25EYXRhU291cmNlIE5hbWU9IlJGSVF1ZXJ5RGF0YVNvdXJjZSI+PFNjaGVtYT48Tm9kZSBOYW1lPSJSRkkiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZEJ5IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpc2NpcGxpbmUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSRklSZWZlcmVuY2VOdW1iZXIxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJGSVJlZmVyZW5jZU51bWJlcjIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3ViQ29udHJhY3Rvck51bWJlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOdW1iZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1YmplY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpb3JpdHkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3RhdHVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dGhvciIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNvdXJjZVJGSSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDU0lDb2RlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNSb290IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb2RlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikl0ZW1zQ291bnQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvZGVEZXNjcmlwdGlvbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IkxvY2F0aW9uIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGVzY3JpcHRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmxvb3JUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlpvbmVUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb2plY3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNpdGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmVhclVuaXRzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFyZWFVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJWb2x1bWVVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcmVhTWVhc3VyZW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGhhc2UiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRWxldmF0aW9uIiBUeXBlPSJTeXN0ZW0uRG91YmxlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSb29tVGFnIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzYWJsZUhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJHcm9zc0FyZWEiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTmV0QXJlYSIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlFSQ29kZUNvdW50IiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUVJDb2RlSW5kaWNhdG9yIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJDb3N0RWZmZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvc3RBbW91bnQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpbWVFZmZlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTnVtYmVyT2ZEYXlzIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVmZXJlbmNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlF1ZXN0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb3Bvc2VkU29sdXRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXNzaWduZWRUbyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9Ik93bmVyUmVwcmVzZW50YXRpdmUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iT2JqZWN0Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcHBOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaXJzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGFzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWlkZGxlTmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQcmVmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3VmZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpdGxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRW1wbG95ZWUiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBlcnNvbklkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVtYWlsQWRkcmVzcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYWNlYm9vayIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUd2l0dGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmtlZEluIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpcmVjdCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2JpbGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmF4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluVXNlciIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5BZG1pbiIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNJblN5bmNXaXRoQ29tbXVuaXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc1B1Ymxpc2hlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlRG9tYWluSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY2NvdW50SW52aXRhdGlvblNlbnREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjdGl2YXRpb25EYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RDb21wYW55TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdEZ1bGxOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGFueUNvbnRhY3RMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvbmdMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEZXRhaWxMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQbGFuR3JpZEFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaWVsZFdpcmVBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJTZW50VG9Pd25lckRhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJPd25lclJlc3BvbmRlZERhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJPd25lclJlbWFya3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT2ZmaWNpYWxSZXNwb25kZXIiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iT2JqZWN0Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcHBOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaXJzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGFzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWlkZGxlTmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQcmVmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3VmZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpdGxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRW1wbG95ZWUiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBlcnNvbklkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVtYWlsQWRkcmVzcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYWNlYm9vayIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUd2l0dGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmtlZEluIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpcmVjdCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2JpbGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmF4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluVXNlciIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5BZG1pbiIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNJblN5bmNXaXRoQ29tbXVuaXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc1B1Ymxpc2hlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlRG9tYWluSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY2NvdW50SW52aXRhdGlvblNlbnREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjdGl2YXRpb25EYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RDb21wYW55TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdEZ1bGxOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGFueUNvbnRhY3RMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvbmdMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEZXRhaWxMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQbGFuR3JpZEFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaWVsZFdpcmVBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJBdXRvc2VuZFRvT2ZmaWNpYWxSZXNwb25kZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RydWN0aW9uc1RvT2ZmaWNpYWxSZXNwb25kZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZVNlbnQiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEdWVEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZVJlc3BvbmRlZCIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbnNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dG9zZW5kVG9SZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0cnVjdGlvbnNUb1Jlc3BvbmRlcnMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVzcG9uZGVyc0NhbkFkZFJlc3BvbmRlcnMiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbmRlcnNTZWVBbGxSZXNwb25zZXMiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGlmeUFsbFJlc3BvbmRlcnMiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzZVNlbmREaWFsb2ciIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzZVRhc2tXb3JrZmxvdyIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5UmV2aWV3UGVyaW9kIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpbWFyeVJldmlld1BlcmlvZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IldvcmtmbG93U3RlcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25kZXJzIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcHBOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaXJzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGFzdE5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWlkZGxlTmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQcmVmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3VmZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpdGxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRW1wbG95ZWUiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBlcnNvbklkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVtYWlsQWRkcmVzcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYWNlYm9vayIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUd2l0dGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmtlZEluIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpcmVjdCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2JpbGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmF4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluVXNlciIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5BZG1pbiIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNJblN5bmNXaXRoQ29tbXVuaXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc1B1Ymxpc2hlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlRG9tYWluSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY2NvdW50SW52aXRhdGlvblNlbnREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjdGl2YXRpb25EYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RDb21wYW55TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdEZ1bGxOYW1lTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGFueUNvbnRhY3RMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvbmdMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEZXRhaWxMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQbGFuR3JpZEFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGaWVsZFdpcmVBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tVGV4dDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJSZXNwb25zZVNlY29uZGFyeSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaGVldERldGFpbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTZWNvbmRhcnlDb21tZW50cyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJBcnJheSI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tbWVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21tZW50Q3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlByb2plY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmV2aWV3U3RhcnREYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmV2aWV3RW5kRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpc2NsYWltZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJvbXB0UmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldHVybkZvckNsYXJpZmljYXRpb25SZWFzb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjYWxsUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldHVyblJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJXb3JrZmxvd09wZXJhdGlvblRhZyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJXb3JrU3VzcGVuZGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wbGV0ZWREYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUm9vdENhdXNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48L1NjaGVtYT48L0pzb25EYXRhU291cmNlPg==\\\" />\\r\\n          </ComponentStorage>\\r\\n          <ObjectStorage>\\r\\n            <Item1 ObjectType=\\\"DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v23.2\\\" Ref=\\\"7\\\" Content=\\\"System.Drawing.Image\\\" Type=\\\"System.Type\\\" />\\r\\n          </ObjectStorage>\\r\\n        </XtraReportsLayoutSerializer>\\r\\n      </ReportXml>\\r\\n    </DataSourceReport>\\r\\n    <DataSourceReport DataSourceName=\\\"RFIQueryDataSource\\\" Name=\\\"RFILogGroupedByResponderDS\\\" Title=\\\"[RFILogGroupedByResponderLabel]\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"Report\\\" Author=\\\"Kahua\\\" Description=\\\"[RFILogGroupedByResponderDesc]\\\">\\r\\n      <ReportXml>\\r\\n        <XtraReportsLayoutSerializer SerializerVersion=\\\"23.2.5.0\\\" Ref=\\\"1\\\" ControlType=\\\"DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a\\\" Name=\\\"Report1\\\" Landscape=\\\"true\\\" Margins=\\\"0, 0, 0, 0\\\" PageWidth=\\\"1100\\\" PageHeight=\\\"850\\\" Version=\\\"23.2\\\" DataSource=\\\"#Ref-0\\\">\\r\\n          <Parameters>\\r\\n            <Item1 Ref=\\\"3\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionLabel]\\\" Name=\\\"PartitionLabel\\\" />\\r\\n            <Item2 Ref=\\\"4\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionPath]\\\" Name=\\\"PartitionPath\\\" />\\r\\n            <Item3 Ref=\\\"5\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ReportTitle]\\\" Name=\\\"ReportTitle\\\" />\\r\\n            <Item4 Ref=\\\"6\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CompanyLogo]\\\" Name=\\\"CompanyLogo\\\" />\\r\\n            <Item5 Ref=\\\"8\\\" Visible=\\\"false\\\" Name=\\\"ProjectLogo\\\" Type=\\\"#Ref-7\\\" />\\r\\n            <Item6 Ref=\\\"9\\\" Visible=\\\"false\\\" ValueInfo=\\\"[DomainLabel]\\\" Name=\\\"DomainLabel\\\" />\\r\\n            <Item7 Ref=\\\"10\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneLong]\\\" Name=\\\"CurrentTimeZoneLong\\\" />\\r\\n            <Item8 Ref=\\\"11\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneShort]\\\" Name=\\\"CurrentTimeZoneShort\\\" />\\r\\n            <Item9 Ref=\\\"12\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ItemsCount]\\\" Name=\\\"ItemsCount\\\" />\\r\\n            <Item10 Ref=\\\"13\\\" Visible=\\\"false\\\" ValueInfo=\\\"[RunInfo]\\\" Name=\\\"RunInfo\\\" />\\r\\n            <Item11 Ref=\\\"14\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ListName]\\\" Name=\\\"ListName\\\" />\\r\\n          </Parameters>\\r\\n          <CalculatedFields>\\r\\n            <Item1 Ref=\\\"15\\\" Name=\\\"DateSubmittedCalc\\\" FieldType=\\\"DateTime\\\" DisplayName=\\\"DateSubmitted\\\" Expression=\\\"Iif( !IsNullOrEmpty([OwnerRepresentative]), [SentToOwnerDate], [DateSent] )\\\" />\\r\\n            <Item2 Ref=\\\"16\\\" Name=\\\"EarlyLateResponseCalc\\\" FieldType=\\\"Int32\\\" DisplayName=\\\"EarlyLateResponse\\\" Expression=\\\"Iif(IsNull([DateResponded]),DateDiffDay([DueDate], Today() ), DateDiffDay( [DueDate], [DateResponded] ) )\\\" />\\r\\n          </CalculatedFields>\\r\\n          <Bands>\\r\\n            <Item1 Ref=\\\"17\\\" ControlType=\\\"TopMarginBand\\\" Name=\\\"TopMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item2 Ref=\\\"18\\\" ControlType=\\\"DetailBand\\\" Name=\\\"Detail1\\\" HeightF=\\\"32\\\" EvenStyleName=\\\"Kahua_Data1_Odd\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n              <SortFields>\\r\\n                <Item1 Ref=\\\"19\\\" FieldName=\\\"Number\\\" />\\r\\n              </SortFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"20\\\" ControlType=\\\"XRTable\\\" Name=\\\"table1\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1037.5,32\\\" LocationFloat=\\\"31.475492,0\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"21\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow1\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"22\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell2\\\" Weight=\\\"0.6136319041948509\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"23\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Number]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"24\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell3\\\" Weight=\\\"1.554427735423437\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"25\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Subject]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"26\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell4\\\" Weight=\\\"1.2461790914623483\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"27\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Author].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"28\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell5\\\" Weight=\\\"0.780414394297332\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"29\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateSubmittedCalc]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"30\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"31\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell6\\\" Weight=\\\"0.7804143942973312\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"32\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DueDate]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"33\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"34\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell7\\\" Weight=\\\"0.8636388575816999\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"35\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateResponded]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"36\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"37\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell8\\\" Weight=\\\"0.9126337858407818\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"38\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[EarlyLateResponseCalc]\\\" />\\r\\n                            <Item2 Ref=\\\"39\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"ForeColor\\\" Expression=\\\"Iif(IsNullOrEmpty([DateResponded]), 'Red', 'DimGray')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"40\\\" UseForeColor=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"41\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell9\\\" Weight=\\\"1.2486598369022248\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"42\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Status]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item8>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"43\\\" UseFont=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"44\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item2>\\r\\n            <Item3 Ref=\\\"45\\\" ControlType=\\\"BottomMarginBand\\\" Name=\\\"BottomMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item4 Ref=\\\"46\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader2\\\" HeightF=\\\"32\\\" StyleName=\\\"Kahua_Data1_Even\\\">\\r\\n              <GroupFields>\\r\\n                <Item1 Ref=\\\"47\\\" FieldName=\\\"OfficialResponder.ShortLabel\\\" />\\r\\n              </GroupFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"48\\\" ControlType=\\\"XRLabel\\\" Name=\\\"label1\\\" Multiline=\\\"true\\\" Text=\\\"label1\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1037.5,32\\\" LocationFloat=\\\"31.475492,7.4014865E-15\\\" StyleName=\\\"Kahua_Group_Header1\\\" BackColor=\\\"Transparent\\\" Padding=\\\"2,2,0,0,100\\\">\\r\\n                  <ExpressionBindings>\\r\\n                    <Item1 Ref=\\\"49\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[OfficialResponder].[ShortLabel]\\\" />\\r\\n                  </ExpressionBindings>\\r\\n                  <StylePriority Ref=\\\"50\\\" UseBackColor=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n            </Item4>\\r\\n            <Item5 Ref=\\\"51\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader1\\\" RepeatEveryPage=\\\"true\\\" Level=\\\"1\\\" HeightF=\\\"34.805557\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"24,24,4,4,100\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"52\\\" ControlType=\\\"XRTable\\\" Name=\\\"table2\\\" SizeF=\\\"1037.5,23\\\" LocationFloat=\\\"31.475492,11.805557\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"53\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow3\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"54\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell12\\\" Weight=\\\"0.6647806383384094\\\" Text=\\\"Number\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"55\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldNumberLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"56\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"57\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell13\\\" Weight=\\\"1.6839956578880748\\\" Text=\\\"Subject\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"58\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldSubjectLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"59\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"60\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell14\\\" Weight=\\\"1.3500532261165799\\\" CanShrink=\\\"true\\\" Text=\\\"Submitter&#x9;\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"61\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldAuthorLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"62\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"63\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell15\\\" Weight=\\\"0.8454651325377043\\\" Text=\\\"Date Submitted\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"64\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateSubmittedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"65\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"66\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell16\\\" Weight=\\\"0.8454651325377043\\\" Text=\\\"Due Date\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"67\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDueDateLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"68\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"69\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell17\\\" Weight=\\\"0.935626695926666\\\" Text=\\\"Date Responded\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"70\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateRespondedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"71\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"72\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell1\\\" Weight=\\\"0.9887055522585433\\\" Text=\\\"Early / Late Response\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"73\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldEarlyLateResponseLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"74\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"75\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell18\\\" Weight=\\\"1.3527407518560355\\\" Text=\\\"Status / Action / Response\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"76\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldStatusActionResponseLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"77\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item8>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"78\\\" UsePadding=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"79\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item5>\\r\\n            <Item6 Ref=\\\"80\\\" ControlType=\\\"GroupFooterBand\\\" Name=\\\"GroupFooter1\\\" Level=\\\"1\\\" HeightF=\\\"38.88889\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"81\\\" ControlType=\\\"XRLabel\\\" Name=\\\"label2\\\" Multiline=\\\"true\\\" Text=\\\"label2\\\" TextAlignment=\\\"MiddleRight\\\" SizeF=\\\"185.41667,28.472221\\\" LocationFloat=\\\"883.55884,5.208334\\\" StyleName=\\\"Kahua_Group_Footer1\\\" Padding=\\\"2,2,0,0,100\\\">\\r\\n                  <ExpressionBindings>\\r\\n                    <Item1 Ref=\\\"82\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Concat('Items:  ', Count())\\\" />\\r\\n                  </ExpressionBindings>\\r\\n                  <StylePriority Ref=\\\"83\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n            </Item6>\\r\\n          </Bands>\\r\\n          <StyleSheet>\\r\\n            <Item1 Ref=\\\"84\\\" Name=\\\"Kahua_Report_Title1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"0,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 22pt, style=Bold\\\" ForeColor=\\\"255,109,121,127\\\" Sides=\\\"None\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item2 Ref=\\\"85\\\" Name=\\\"Kahua_Report_Title2\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 12pt, style=Italic, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item3 Ref=\\\"86\\\" Name=\\\"Kahua_Report_Title_Line\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" BackColor=\\\"Transparent\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item4 Ref=\\\"87\\\" Name=\\\"Kahua_Report_Summary\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item5 Ref=\\\"88\\\" Name=\\\"Kahua_Page_Header\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,109,121,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item6 Ref=\\\"89\\\" Name=\\\"Kahua_Page_Footer\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 11pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item7 Ref=\\\"90\\\" Name=\\\"Kahua_Group_Header1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" BorderColor=\\\"255,140,193,205\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n            <Item8 Ref=\\\"91\\\" Name=\\\"Kahua_Group_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item9 Ref=\\\"92\\\" Name=\\\"Kahua_Header1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" BackColor=\\\"255,177,213,222\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item10 Ref=\\\"93\\\" Name=\\\"Kahua_Data1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"5,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Center;0;None;Character;Default\\\" TextAlignment=\\\"MiddleLeft\\\" />\\r\\n            <Item11 Ref=\\\"94\\\" Name=\\\"Kahua_Data1_Odd\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item12 Ref=\\\"95\\\" Name=\\\"Kahua_Data1_Even\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"255,238,240,240\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item13 Ref=\\\"96\\\" Name=\\\"Kahua_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item14 Ref=\\\"97\\\" Name=\\\"Kahua_Page_Footer_DateTime\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,127,127,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item15 Ref=\\\"98\\\" Name=\\\"Kahua_Page_Footer_PoweredBy\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item16 Ref=\\\"99\\\" Name=\\\"Kahua_Url\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Underline\\\" ForeColor=\\\"255,0,0,100\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n          </StyleSheet>\\r\\n          <ComponentStorage>\\r\\n            <Item1 Ref=\\\"0\\\" ObjectType=\\\"DevExpress.DataAccess.Json.JsonDataSource,DevExpress.DataAccess.v23.2\\\" Name=\\\"RFIQueryDataSource\\\" Base64=\\\"PEpzb25EYXRhU291cmNlIE5hbWU9IlJGSVF1ZXJ5RGF0YVNvdXJjZSI+PFNjaGVtYT48Tm9kZSBOYW1lPSJSRkkiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpc2NpcGxpbmUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSRklSZWZlcmVuY2VOdW1iZXIxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJGSVJlZmVyZW5jZU51bWJlcjIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3ViQ29udHJhY3Rvck51bWJlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOdW1iZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1YmplY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpb3JpdHkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3RhdHVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dGhvciIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNvdXJjZVJGSSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDU0lDb2RlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNSb290IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb2RlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikl0ZW1zQ291bnQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvZGVEZXNjcmlwdGlvbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IkxvY2F0aW9uIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGVzY3JpcHRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmxvb3JUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlpvbmVUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb2plY3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNpdGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmVhclVuaXRzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFyZWFVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJWb2x1bWVVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcmVhTWVhc3VyZW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGhhc2UiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRWxldmF0aW9uIiBUeXBlPSJTeXN0ZW0uRG91YmxlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSb29tVGFnIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzYWJsZUhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJHcm9zc0FyZWEiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTmV0QXJlYSIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJDb3N0RWZmZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvc3RBbW91bnQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpbWVFZmZlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTnVtYmVyT2ZEYXlzIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVmZXJlbmNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlF1ZXN0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb3Bvc2VkU29sdXRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2VudFRvT3duZXJEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZXNwb25kZWREYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZW1hcmtzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik9mZmljaWFsUmVzcG9uZGVyIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iQXV0b3NlbmRUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0cnVjdGlvbnNUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVTZW50IiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRHVlRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVSZXNwb25kZWQiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25zZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBdXRvc2VuZFRvUmVzcG9uZGVycyIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdHJ1Y3Rpb25zVG9SZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbmRlcnNDYW5BZGRSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25kZXJzU2VlQWxsUmVzcG9uc2VzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RpZnlBbGxSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VTZW5kRGlhbG9nIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VUYXNrV29ya2Zsb3ciIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNlY29uZGFyeVJldmlld1BlcmlvZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByaW1hcnlSZXZpZXdQZXJpb2QiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJXb3JrZmxvd1N0ZXAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVzcG9uZGVycyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJBcnJheSI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iUmVzcG9uc2VTZWNvbmRhcnkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hlZXREZXRhaWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5Q29tbWVudHMiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tbWVudENyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJQcm9qZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld1N0YXJ0RGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld0VuZERhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXNjbGFpbWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb21wdFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5Gb3JDbGFyaWZpY2F0aW9uUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY2FsbFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5SZWFzb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya2Zsb3dPcGVyYXRpb25UYWciIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya1N1c3BlbmRlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGxldGVkRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJvb3RDYXVzZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PC9TY2hlbWE+PC9Kc29uRGF0YVNvdXJjZT4=\\\" />\\r\\n          </ComponentStorage>\\r\\n          <ObjectStorage>\\r\\n            <Item1 ObjectType=\\\"DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v23.2\\\" Ref=\\\"7\\\" Content=\\\"System.Drawing.Image\\\" Type=\\\"System.Type\\\" />\\r\\n          </ObjectStorage>\\r\\n        </XtraReportsLayoutSerializer>\\r\\n      </ReportXml>\\r\\n    </DataSourceReport>\\r\\n    <DataSourceReport DataSourceName=\\\"RFIQueryDataSource\\\" Name=\\\"RFILogGroupedByStatusDS\\\" Title=\\\"[RFILogGroupedByStatusLabel]\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"Report\\\" Author=\\\"Kahua\\\" Description=\\\"[RFILogGroupedByStatusDesc]\\\">\\r\\n      <ReportXml>\\r\\n        <XtraReportsLayoutSerializer SerializerVersion=\\\"23.2.5.0\\\" Ref=\\\"1\\\" ControlType=\\\"DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a\\\" Name=\\\"Report1\\\" Landscape=\\\"true\\\" Margins=\\\"0, 0, 0, 0\\\" PageWidth=\\\"1100\\\" PageHeight=\\\"850\\\" Version=\\\"23.2\\\" DataSource=\\\"#Ref-0\\\">\\r\\n          <Parameters>\\r\\n            <Item1 Ref=\\\"3\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionLabel]\\\" Name=\\\"PartitionLabel\\\" />\\r\\n            <Item2 Ref=\\\"4\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionPath]\\\" Name=\\\"PartitionPath\\\" />\\r\\n            <Item3 Ref=\\\"5\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ReportTitle]\\\" Name=\\\"ReportTitle\\\" />\\r\\n            <Item4 Ref=\\\"6\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CompanyLogo]\\\" Name=\\\"CompanyLogo\\\" />\\r\\n            <Item5 Ref=\\\"8\\\" Visible=\\\"false\\\" Name=\\\"ProjectLogo\\\" Type=\\\"#Ref-7\\\" />\\r\\n            <Item6 Ref=\\\"9\\\" Visible=\\\"false\\\" ValueInfo=\\\"[DomainLabel]\\\" Name=\\\"DomainLabel\\\" />\\r\\n            <Item7 Ref=\\\"10\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneLong]\\\" Name=\\\"CurrentTimeZoneLong\\\" />\\r\\n            <Item8 Ref=\\\"11\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneShort]\\\" Name=\\\"CurrentTimeZoneShort\\\" />\\r\\n            <Item9 Ref=\\\"12\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ItemsCount]\\\" Name=\\\"ItemsCount\\\" />\\r\\n            <Item10 Ref=\\\"13\\\" Visible=\\\"false\\\" ValueInfo=\\\"[RunInfo]\\\" Name=\\\"RunInfo\\\" />\\r\\n            <Item11 Ref=\\\"14\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ListName]\\\" Name=\\\"ListName\\\" />\\r\\n          </Parameters>\\r\\n          <CalculatedFields>\\r\\n            <Item1 Ref=\\\"15\\\" Name=\\\"DateSubmittedCalc\\\" FieldType=\\\"DateTime\\\" DisplayName=\\\"DateSubmitted\\\" Expression=\\\"Iif( !IsNullOrEmpty([OwnerRepresentative]), [SentToOwnerDate], [DateSent] )\\\" />\\r\\n            <Item2 Ref=\\\"16\\\" Name=\\\"EarlyLateResponseCalc\\\" FieldType=\\\"Int32\\\" DisplayName=\\\"EarlyLateResponse\\\" Expression=\\\"Iif(IsNull([DateResponded]),DateDiffDay([DueDate], Today() ), DateDiffDay( [DueDate], [DateResponded] ) )&#xD;&#xA;\\\" />\\r\\n          </CalculatedFields>\\r\\n          <Bands>\\r\\n            <Item1 Ref=\\\"17\\\" ControlType=\\\"TopMarginBand\\\" Name=\\\"TopMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item2 Ref=\\\"18\\\" ControlType=\\\"DetailBand\\\" Name=\\\"Detail1\\\" HeightF=\\\"32\\\" EvenStyleName=\\\"Kahua_Data1_Odd\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n              <SortFields>\\r\\n                <Item1 Ref=\\\"19\\\" FieldName=\\\"Number\\\" />\\r\\n              </SortFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"20\\\" ControlType=\\\"XRTable\\\" Name=\\\"table1\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1039.5834,32\\\" LocationFloat=\\\"30.208334,0\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"21\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow1\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"22\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell2\\\" Weight=\\\"0.6136319041948509\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"23\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Number]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"24\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell3\\\" Weight=\\\"1.792395884155482\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"25\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Subject]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"26\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell4\\\" Weight=\\\"1.3316035551097478\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"27\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Author].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"28\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell9\\\" Weight=\\\"1.3722838924257543\\\" Text=\\\"tableCell9\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"29\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[OfficialResponder].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"30\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell5\\\" Weight=\\\"0.8475336157345742\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"31\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateSubmittedCalc]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"32\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"33\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell6\\\" Weight=\\\"0.8658388579447269\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"34\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DueDate]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"35\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"36\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell7\\\" Weight=\\\"0.9124528368087891\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"37\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateResponded]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"38\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"39\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell8\\\" Weight=\\\"1.0446738479234174\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"40\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[EarlyLateResponseCalc]\\\" />\\r\\n                            <Item2 Ref=\\\"41\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"ForeColor\\\" Expression=\\\"Iif(IsNullOrEmpty([DateResponded]), 'Red', 'DimGray')&#xD;&#xA;\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"42\\\" UseForeColor=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item8>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"43\\\" UseFont=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"44\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item2>\\r\\n            <Item3 Ref=\\\"45\\\" ControlType=\\\"BottomMarginBand\\\" Name=\\\"BottomMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item4 Ref=\\\"46\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader2\\\" HeightF=\\\"32\\\" StyleName=\\\"Kahua_Data1_Even\\\">\\r\\n              <GroupFields>\\r\\n                <Item1 Ref=\\\"47\\\" FieldName=\\\"Status\\\" />\\r\\n              </GroupFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"48\\\" ControlType=\\\"XRLabel\\\" Name=\\\"label1\\\" Multiline=\\\"true\\\" Text=\\\"label1\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1039.5834,32\\\" LocationFloat=\\\"30.208334,7.4014865E-15\\\" StyleName=\\\"Kahua_Group_Header1\\\" BackColor=\\\"Transparent\\\" Padding=\\\"2,2,0,0,100\\\">\\r\\n                  <ExpressionBindings>\\r\\n                    <Item1 Ref=\\\"49\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Status]\\\" />\\r\\n                  </ExpressionBindings>\\r\\n                  <StylePriority Ref=\\\"50\\\" UseBackColor=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n            </Item4>\\r\\n            <Item5 Ref=\\\"51\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader1\\\" RepeatEveryPage=\\\"true\\\" Level=\\\"1\\\" HeightF=\\\"34.805557\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"24,24,4,4,100\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"52\\\" ControlType=\\\"XRTable\\\" Name=\\\"table2\\\" SizeF=\\\"1039.5834,23\\\" LocationFloat=\\\"30.208334,11.805557\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"53\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow3\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"54\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell12\\\" Weight=\\\"0.6647806383384094\\\" Text=\\\"Number\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"55\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldNumberLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"56\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"57\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell13\\\" Weight=\\\"1.9417994271133205\\\" Text=\\\"Subject\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"58\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldSubjectLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"59\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"60\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell14\\\" Weight=\\\"1.4425981689153824\\\" CanShrink=\\\"true\\\" Text=\\\"Submitter&#x9;\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"61\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldAuthorLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"62\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"63\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell10\\\" Weight=\\\"1.4866693790722911\\\" Text=\\\"Responder\\\" TextAlignment=\\\"MiddleLeft\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"64\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldOfficialResponderLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"65\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"66\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell15\\\" Weight=\\\"0.9181790161653373\\\" Text=\\\"Date Submitted\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"67\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateSubmittedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"68\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"69\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell16\\\" Weight=\\\"0.9380100753365038\\\" Text=\\\"Due Date\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"70\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDueDateLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"71\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"72\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell17\\\" Weight=\\\"0.988509520383124\\\" Text=\\\"Date Responded\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"73\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateRespondedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"74\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"75\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell1\\\" Weight=\\\"1.131751694673044\\\" Text=\\\"Early / Late Response\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"76\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldEarlyLateResponseLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"77\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item8>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"78\\\" UsePadding=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"79\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item5>\\r\\n            <Item6 Ref=\\\"80\\\" ControlType=\\\"GroupFooterBand\\\" Name=\\\"GroupFooter1\\\" Level=\\\"1\\\" HeightF=\\\"38.88889\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"81\\\" ControlType=\\\"XRLabel\\\" Name=\\\"label2\\\" Multiline=\\\"true\\\" Text=\\\"label2\\\" TextAlignment=\\\"MiddleRight\\\" SizeF=\\\"185.41667,28.472221\\\" LocationFloat=\\\"884.37506,4.1666675\\\" StyleName=\\\"Kahua_Group_Footer1\\\" Padding=\\\"2,2,0,0,100\\\">\\r\\n                  <ExpressionBindings>\\r\\n                    <Item1 Ref=\\\"82\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Concat('Items:  ', Count())\\\" />\\r\\n                  </ExpressionBindings>\\r\\n                  <StylePriority Ref=\\\"83\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n            </Item6>\\r\\n          </Bands>\\r\\n          <StyleSheet>\\r\\n            <Item1 Ref=\\\"84\\\" Name=\\\"Kahua_Report_Title1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"0,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 22pt, style=Bold\\\" ForeColor=\\\"255,109,121,127\\\" Sides=\\\"None\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item2 Ref=\\\"85\\\" Name=\\\"Kahua_Report_Title2\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 12pt, style=Italic, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item3 Ref=\\\"86\\\" Name=\\\"Kahua_Report_Title_Line\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" BackColor=\\\"Transparent\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item4 Ref=\\\"87\\\" Name=\\\"Kahua_Report_Summary\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item5 Ref=\\\"88\\\" Name=\\\"Kahua_Page_Header\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,109,121,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item6 Ref=\\\"89\\\" Name=\\\"Kahua_Page_Footer\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 11pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item7 Ref=\\\"90\\\" Name=\\\"Kahua_Group_Header1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" BorderColor=\\\"255,140,193,205\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n            <Item8 Ref=\\\"91\\\" Name=\\\"Kahua_Group_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item9 Ref=\\\"92\\\" Name=\\\"Kahua_Header1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" BackColor=\\\"255,177,213,222\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item10 Ref=\\\"93\\\" Name=\\\"Kahua_Data1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"5,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Center;0;None;Character;Default\\\" TextAlignment=\\\"MiddleLeft\\\" />\\r\\n            <Item11 Ref=\\\"94\\\" Name=\\\"Kahua_Data1_Odd\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item12 Ref=\\\"95\\\" Name=\\\"Kahua_Data1_Even\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"255,238,240,240\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item13 Ref=\\\"96\\\" Name=\\\"Kahua_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item14 Ref=\\\"97\\\" Name=\\\"Kahua_Page_Footer_DateTime\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,127,127,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item15 Ref=\\\"98\\\" Name=\\\"Kahua_Page_Footer_PoweredBy\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item16 Ref=\\\"99\\\" Name=\\\"Kahua_Url\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Underline\\\" ForeColor=\\\"255,0,0,100\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n          </StyleSheet>\\r\\n          <ComponentStorage>\\r\\n            <Item1 Ref=\\\"0\\\" ObjectType=\\\"DevExpress.DataAccess.Json.JsonDataSource,DevExpress.DataAccess.v23.2\\\" Name=\\\"RFIQueryDataSource\\\" Base64=\\\"PEpzb25EYXRhU291cmNlIE5hbWU9IlJGSVF1ZXJ5RGF0YVNvdXJjZSI+PFNjaGVtYT48Tm9kZSBOYW1lPSJSRkkiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpc2NpcGxpbmUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSRklSZWZlcmVuY2VOdW1iZXIxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJGSVJlZmVyZW5jZU51bWJlcjIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3ViQ29udHJhY3Rvck51bWJlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOdW1iZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1YmplY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpb3JpdHkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3RhdHVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dGhvciIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNvdXJjZVJGSSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDU0lDb2RlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNSb290IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb2RlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikl0ZW1zQ291bnQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvZGVEZXNjcmlwdGlvbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IkxvY2F0aW9uIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGVzY3JpcHRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmxvb3JUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlpvbmVUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb2plY3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNpdGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmVhclVuaXRzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFyZWFVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJWb2x1bWVVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcmVhTWVhc3VyZW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGhhc2UiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRWxldmF0aW9uIiBUeXBlPSJTeXN0ZW0uRG91YmxlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSb29tVGFnIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzYWJsZUhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJHcm9zc0FyZWEiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTmV0QXJlYSIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJDb3N0RWZmZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvc3RBbW91bnQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpbWVFZmZlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTnVtYmVyT2ZEYXlzIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVmZXJlbmNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlF1ZXN0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb3Bvc2VkU29sdXRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2VudFRvT3duZXJEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZXNwb25kZWREYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZW1hcmtzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik9mZmljaWFsUmVzcG9uZGVyIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iQXV0b3NlbmRUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0cnVjdGlvbnNUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVTZW50IiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRHVlRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVSZXNwb25kZWQiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25zZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBdXRvc2VuZFRvUmVzcG9uZGVycyIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdHJ1Y3Rpb25zVG9SZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbmRlcnNDYW5BZGRSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25kZXJzU2VlQWxsUmVzcG9uc2VzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RpZnlBbGxSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VTZW5kRGlhbG9nIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VUYXNrV29ya2Zsb3ciIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNlY29uZGFyeVJldmlld1BlcmlvZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByaW1hcnlSZXZpZXdQZXJpb2QiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJXb3JrZmxvd1N0ZXAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVzcG9uZGVycyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJBcnJheSI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iUmVzcG9uc2VTZWNvbmRhcnkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hlZXREZXRhaWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5Q29tbWVudHMiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tbWVudENyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJQcm9qZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld1N0YXJ0RGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld0VuZERhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXNjbGFpbWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb21wdFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5Gb3JDbGFyaWZpY2F0aW9uUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY2FsbFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5SZWFzb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya2Zsb3dPcGVyYXRpb25UYWciIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya1N1c3BlbmRlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGxldGVkRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJvb3RDYXVzZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PC9TY2hlbWE+PC9Kc29uRGF0YVNvdXJjZT4=\\\" />\\r\\n          </ComponentStorage>\\r\\n          <ObjectStorage>\\r\\n            <Item1 ObjectType=\\\"DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v23.2\\\" Ref=\\\"7\\\" Content=\\\"System.Drawing.Image\\\" Type=\\\"System.Type\\\" />\\r\\n          </ObjectStorage>\\r\\n        </XtraReportsLayoutSerializer>\\r\\n      </ReportXml>\\r\\n    </DataSourceReport>\\r\\n    <DataSourceReport DataSourceName=\\\"RFIQueryDataSource\\\" Name=\\\"RFILogGroupedBySubmitterDS\\\" Title=\\\"[RFILogGroupedBySubmitterLabel]\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"Report\\\" Author=\\\"Kahua\\\" Description=\\\"[RFILogGroupedBySubmitterDesc]\\\">\\r\\n      <ReportXml>\\r\\n        <XtraReportsLayoutSerializer SerializerVersion=\\\"23.2.5.0\\\" Ref=\\\"1\\\" ControlType=\\\"DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a\\\" Name=\\\"Report1\\\" Landscape=\\\"true\\\" Margins=\\\"0, 0, 0, 0\\\" PageWidth=\\\"1100\\\" PageHeight=\\\"850\\\" Version=\\\"23.2\\\" DataSource=\\\"#Ref-0\\\">\\r\\n          <Parameters>\\r\\n            <Item1 Ref=\\\"3\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionLabel]\\\" Name=\\\"PartitionLabel\\\" />\\r\\n            <Item2 Ref=\\\"4\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionPath]\\\" Name=\\\"PartitionPath\\\" />\\r\\n            <Item3 Ref=\\\"5\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ReportTitle]\\\" Name=\\\"ReportTitle\\\" />\\r\\n            <Item4 Ref=\\\"6\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CompanyLogo]\\\" Name=\\\"CompanyLogo\\\" />\\r\\n            <Item5 Ref=\\\"8\\\" Visible=\\\"false\\\" Name=\\\"ProjectLogo\\\" Type=\\\"#Ref-7\\\" />\\r\\n            <Item6 Ref=\\\"9\\\" Visible=\\\"false\\\" ValueInfo=\\\"[DomainLabel]\\\" Name=\\\"DomainLabel\\\" />\\r\\n            <Item7 Ref=\\\"10\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneLong]\\\" Name=\\\"CurrentTimeZoneLong\\\" />\\r\\n            <Item8 Ref=\\\"11\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneShort]\\\" Name=\\\"CurrentTimeZoneShort\\\" />\\r\\n            <Item9 Ref=\\\"12\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ItemsCount]\\\" Name=\\\"ItemsCount\\\" />\\r\\n            <Item10 Ref=\\\"13\\\" Visible=\\\"false\\\" ValueInfo=\\\"[RunInfo]\\\" Name=\\\"RunInfo\\\" />\\r\\n            <Item11 Ref=\\\"14\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ListName]\\\" Name=\\\"ListName\\\" />\\r\\n          </Parameters>\\r\\n          <CalculatedFields>\\r\\n            <Item1 Ref=\\\"15\\\" Name=\\\"DateSubmittedCalc\\\" FieldType=\\\"DateTime\\\" DisplayName=\\\"DateSubmitted\\\" Expression=\\\"Iif( !IsNullOrEmpty([OwnerRepresentative]), [SentToOwnerDate], [DateSent] )\\\" />\\r\\n            <Item2 Ref=\\\"16\\\" Name=\\\"EarlyLateResponseCalc\\\" FieldType=\\\"Int32\\\" DisplayName=\\\"EarlyLateResponse\\\" Expression=\\\"Iif(IsNull([DateResponded]),DateDiffDay([DueDate], Today() ), DateDiffDay( [DueDate], [DateResponded] ) )\\\" />\\r\\n          </CalculatedFields>\\r\\n          <Bands>\\r\\n            <Item1 Ref=\\\"17\\\" ControlType=\\\"TopMarginBand\\\" Name=\\\"TopMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item2 Ref=\\\"18\\\" ControlType=\\\"DetailBand\\\" Name=\\\"Detail1\\\" HeightF=\\\"32\\\" EvenStyleName=\\\"Kahua_Data1_Odd\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n              <SortFields>\\r\\n                <Item1 Ref=\\\"19\\\" FieldName=\\\"Number\\\" />\\r\\n              </SortFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"20\\\" ControlType=\\\"XRTable\\\" Name=\\\"table1\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1039.9038,32\\\" LocationFloat=\\\"29.392159,0\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"21\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow1\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"22\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell2\\\" Weight=\\\"0.6136319041948509\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"23\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Number]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"24\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell3\\\" Weight=\\\"1.554427735423437\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"25\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Subject]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"26\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell4\\\" Weight=\\\"1.2461790914623483\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"27\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[OfficialResponder].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"28\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell5\\\" Weight=\\\"0.780414394297332\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"29\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateSubmittedCalc]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"30\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"31\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell6\\\" Weight=\\\"0.7804143942973312\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"32\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DueDate]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"33\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"34\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell7\\\" Weight=\\\"0.8636388575816999\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"35\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateResponded]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"36\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"37\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell8\\\" Weight=\\\"0.9126337858407818\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"38\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[EarlyLateResponseCalc]\\\" />\\r\\n                            <Item2 Ref=\\\"39\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"ForeColor\\\" Expression=\\\"Iif(IsNullOrEmpty([DateResponded]), 'Red', 'DimGray')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"40\\\" UseForeColor=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"41\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell9\\\" Weight=\\\"1.2486598369022248\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"42\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Status]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item8>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"43\\\" UseFont=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"44\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item2>\\r\\n            <Item3 Ref=\\\"45\\\" ControlType=\\\"BottomMarginBand\\\" Name=\\\"BottomMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item4 Ref=\\\"46\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader2\\\" HeightF=\\\"32\\\" StyleName=\\\"Kahua_Data1_Even\\\">\\r\\n              <GroupFields>\\r\\n                <Item1 Ref=\\\"47\\\" FieldName=\\\"Author.ShortLabel\\\" />\\r\\n              </GroupFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"48\\\" ControlType=\\\"XRLabel\\\" Name=\\\"label1\\\" Multiline=\\\"true\\\" Text=\\\"label1\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1039.9038,32\\\" LocationFloat=\\\"29.392159,7.4014865E-15\\\" StyleName=\\\"Kahua_Group_Header1\\\" BackColor=\\\"Transparent\\\" Padding=\\\"2,2,0,0,100\\\">\\r\\n                  <ExpressionBindings>\\r\\n                    <Item1 Ref=\\\"49\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Author].[ShortLabel]\\\" />\\r\\n                  </ExpressionBindings>\\r\\n                  <StylePriority Ref=\\\"50\\\" UseBackColor=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n            </Item4>\\r\\n            <Item5 Ref=\\\"51\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader1\\\" RepeatEveryPage=\\\"true\\\" Level=\\\"1\\\" HeightF=\\\"34.805557\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"24,24,4,4,100\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"52\\\" ControlType=\\\"XRTable\\\" Name=\\\"table2\\\" SizeF=\\\"1039.9038,23\\\" LocationFloat=\\\"29.392159,11.805557\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"53\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow3\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"54\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell12\\\" Weight=\\\"0.6647806383384094\\\" Text=\\\"Number\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"55\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldNumberLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"56\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"57\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell13\\\" Weight=\\\"1.6839956578880748\\\" Text=\\\"Subject\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"58\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldSubjectLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"59\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"60\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell14\\\" Weight=\\\"1.3500532261165799\\\" CanShrink=\\\"true\\\" Text=\\\"Responder\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"61\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldOfficialResponderLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"62\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"63\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell15\\\" Weight=\\\"0.8454651325377043\\\" Text=\\\"Date Submitted\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"64\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateSubmittedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"65\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"66\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell16\\\" Weight=\\\"0.8454651325377043\\\" Text=\\\"Due Date\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"67\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDueDateLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"68\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"69\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell17\\\" Weight=\\\"0.935626695926666\\\" Text=\\\"Date Responded\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"70\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateRespondedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"71\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"72\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell1\\\" Weight=\\\"0.9887055522585433\\\" Text=\\\"Early / Late Response\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"73\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldEarlyLateResponseLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"74\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"75\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell18\\\" Weight=\\\"1.3527407518560355\\\" Text=\\\"Status / Action / Response\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"76\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldStatusActionResponseLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"77\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item8>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"78\\\" UsePadding=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"79\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item5>\\r\\n            <Item6 Ref=\\\"80\\\" ControlType=\\\"GroupFooterBand\\\" Name=\\\"GroupFooter1\\\" Level=\\\"1\\\" HeightF=\\\"38.88889\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"81\\\" ControlType=\\\"XRLabel\\\" Name=\\\"label2\\\" Multiline=\\\"true\\\" Text=\\\"label2\\\" TextAlignment=\\\"MiddleRight\\\" SizeF=\\\"185.41667,28.472221\\\" LocationFloat=\\\"883.8793,4.1666675\\\" StyleName=\\\"Kahua_Group_Footer1\\\" Padding=\\\"2,2,0,0,100\\\">\\r\\n                  <ExpressionBindings>\\r\\n                    <Item1 Ref=\\\"82\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Concat('Items:  ', Count())\\\" />\\r\\n                  </ExpressionBindings>\\r\\n                  <StylePriority Ref=\\\"83\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n            </Item6>\\r\\n          </Bands>\\r\\n          <StyleSheet>\\r\\n            <Item1 Ref=\\\"84\\\" Name=\\\"Kahua_Report_Title1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"0,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 22pt, style=Bold\\\" ForeColor=\\\"255,109,121,127\\\" Sides=\\\"None\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item2 Ref=\\\"85\\\" Name=\\\"Kahua_Report_Title2\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 12pt, style=Italic, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item3 Ref=\\\"86\\\" Name=\\\"Kahua_Report_Title_Line\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" BackColor=\\\"Transparent\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item4 Ref=\\\"87\\\" Name=\\\"Kahua_Report_Summary\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item5 Ref=\\\"88\\\" Name=\\\"Kahua_Page_Header\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,109,121,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item6 Ref=\\\"89\\\" Name=\\\"Kahua_Page_Footer\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 11pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item7 Ref=\\\"90\\\" Name=\\\"Kahua_Group_Header1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" BorderColor=\\\"255,140,193,205\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n            <Item8 Ref=\\\"91\\\" Name=\\\"Kahua_Group_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item9 Ref=\\\"92\\\" Name=\\\"Kahua_Header1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" BackColor=\\\"255,177,213,222\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item10 Ref=\\\"93\\\" Name=\\\"Kahua_Data1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"5,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Center;0;None;Character;Default\\\" TextAlignment=\\\"MiddleLeft\\\" />\\r\\n            <Item11 Ref=\\\"94\\\" Name=\\\"Kahua_Data1_Odd\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item12 Ref=\\\"95\\\" Name=\\\"Kahua_Data1_Even\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"255,238,240,240\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item13 Ref=\\\"96\\\" Name=\\\"Kahua_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item14 Ref=\\\"97\\\" Name=\\\"Kahua_Page_Footer_DateTime\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,127,127,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item15 Ref=\\\"98\\\" Name=\\\"Kahua_Page_Footer_PoweredBy\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item16 Ref=\\\"99\\\" Name=\\\"Kahua_Url\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Underline\\\" ForeColor=\\\"255,0,0,100\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n          </StyleSheet>\\r\\n          <ComponentStorage>\\r\\n            <Item1 Ref=\\\"0\\\" ObjectType=\\\"DevExpress.DataAccess.Json.JsonDataSource,DevExpress.DataAccess.v23.2\\\" Name=\\\"RFIQueryDataSource\\\" Base64=\\\"PEpzb25EYXRhU291cmNlIE5hbWU9IlJGSVF1ZXJ5RGF0YVNvdXJjZSI+PFNjaGVtYT48Tm9kZSBOYW1lPSJSRkkiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpc2NpcGxpbmUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSRklSZWZlcmVuY2VOdW1iZXIxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJGSVJlZmVyZW5jZU51bWJlcjIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3ViQ29udHJhY3Rvck51bWJlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOdW1iZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1YmplY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpb3JpdHkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3RhdHVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dGhvciIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNvdXJjZVJGSSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDU0lDb2RlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNSb290IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb2RlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikl0ZW1zQ291bnQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvZGVEZXNjcmlwdGlvbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IkxvY2F0aW9uIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGVzY3JpcHRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmxvb3JUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlpvbmVUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb2plY3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNpdGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmVhclVuaXRzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFyZWFVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJWb2x1bWVVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcmVhTWVhc3VyZW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGhhc2UiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRWxldmF0aW9uIiBUeXBlPSJTeXN0ZW0uRG91YmxlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSb29tVGFnIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzYWJsZUhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJHcm9zc0FyZWEiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTmV0QXJlYSIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJDb3N0RWZmZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvc3RBbW91bnQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpbWVFZmZlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTnVtYmVyT2ZEYXlzIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVmZXJlbmNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlF1ZXN0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb3Bvc2VkU29sdXRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2VudFRvT3duZXJEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZXNwb25kZWREYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZW1hcmtzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik9mZmljaWFsUmVzcG9uZGVyIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iQXV0b3NlbmRUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0cnVjdGlvbnNUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVTZW50IiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRHVlRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVSZXNwb25kZWQiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25zZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBdXRvc2VuZFRvUmVzcG9uZGVycyIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdHJ1Y3Rpb25zVG9SZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbmRlcnNDYW5BZGRSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25kZXJzU2VlQWxsUmVzcG9uc2VzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RpZnlBbGxSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VTZW5kRGlhbG9nIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VUYXNrV29ya2Zsb3ciIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNlY29uZGFyeVJldmlld1BlcmlvZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByaW1hcnlSZXZpZXdQZXJpb2QiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJXb3JrZmxvd1N0ZXAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVzcG9uZGVycyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJBcnJheSI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iUmVzcG9uc2VTZWNvbmRhcnkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hlZXREZXRhaWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5Q29tbWVudHMiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tbWVudENyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJQcm9qZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld1N0YXJ0RGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld0VuZERhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXNjbGFpbWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb21wdFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5Gb3JDbGFyaWZpY2F0aW9uUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY2FsbFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5SZWFzb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya2Zsb3dPcGVyYXRpb25UYWciIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya1N1c3BlbmRlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGxldGVkRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJvb3RDYXVzZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PC9TY2hlbWE+PC9Kc29uRGF0YVNvdXJjZT4=\\\" />\\r\\n          </ComponentStorage>\\r\\n          <ObjectStorage>\\r\\n            <Item1 ObjectType=\\\"DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v23.2\\\" Ref=\\\"7\\\" Content=\\\"System.Drawing.Image\\\" Type=\\\"System.Type\\\" />\\r\\n          </ObjectStorage>\\r\\n        </XtraReportsLayoutSerializer>\\r\\n      </ReportXml>\\r\\n    </DataSourceReport>\\r\\n    <DataSourceReport DataSourceName=\\\"RFIQueryDataSource\\\" Name=\\\"RFILogSortedByNumberDS\\\" Title=\\\"[RFILogSortedByNumberLabel]\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"Report\\\" Author=\\\"Kahua\\\" Description=\\\"[RFILogSortedByNumberDesc]\\\">\\r\\n      <ReportXml>\\r\\n        <XtraReportsLayoutSerializer SerializerVersion=\\\"23.2.5.0\\\" Ref=\\\"1\\\" ControlType=\\\"DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a\\\" Name=\\\"Report1\\\" Landscape=\\\"true\\\" Margins=\\\"0, 0, 0, 0\\\" PageWidth=\\\"1100\\\" PageHeight=\\\"850\\\" Version=\\\"23.2\\\" DataSource=\\\"#Ref-0\\\">\\r\\n          <Parameters>\\r\\n            <Item1 Ref=\\\"3\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionLabel]\\\" Name=\\\"PartitionLabel\\\" />\\r\\n            <Item2 Ref=\\\"4\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionPath]\\\" Name=\\\"PartitionPath\\\" />\\r\\n            <Item3 Ref=\\\"5\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ReportTitle]\\\" Name=\\\"ReportTitle\\\" />\\r\\n            <Item4 Ref=\\\"6\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CompanyLogo]\\\" Name=\\\"CompanyLogo\\\" />\\r\\n            <Item5 Ref=\\\"8\\\" Visible=\\\"false\\\" Name=\\\"ProjectLogo\\\" Type=\\\"#Ref-7\\\" />\\r\\n            <Item6 Ref=\\\"9\\\" Visible=\\\"false\\\" ValueInfo=\\\"[DomainLabel]\\\" Name=\\\"DomainLabel\\\" />\\r\\n            <Item7 Ref=\\\"10\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneLong]\\\" Name=\\\"CurrentTimeZoneLong\\\" />\\r\\n            <Item8 Ref=\\\"11\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneShort]\\\" Name=\\\"CurrentTimeZoneShort\\\" />\\r\\n            <Item9 Ref=\\\"12\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ItemsCount]\\\" Name=\\\"ItemsCount\\\" />\\r\\n            <Item10 Ref=\\\"13\\\" Visible=\\\"false\\\" ValueInfo=\\\"[RunInfo]\\\" Name=\\\"RunInfo\\\" />\\r\\n            <Item11 Ref=\\\"14\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ListName]\\\" Name=\\\"ListName\\\" />\\r\\n          </Parameters>\\r\\n          <CalculatedFields>\\r\\n            <Item1 Ref=\\\"15\\\" Name=\\\"DateSubmittedCalc\\\" FieldType=\\\"DateTime\\\" DisplayName=\\\"DateSubmitted\\\" Expression=\\\"Iif( !IsNullOrEmpty([OwnerRepresentative]), [SentToOwnerDate], [DateSent] )\\\" />\\r\\n            <Item2 Ref=\\\"16\\\" Name=\\\"EarlyLateResponseCalc\\\" FieldType=\\\"Int32\\\" DisplayName=\\\"EarlyLateResponse\\\" Expression=\\\"Iif(IsNull([DateResponded]),DateDiffDay([DueDate], Today() ), DateDiffDay( [DueDate], [DateResponded] ) )\\\" />\\r\\n          </CalculatedFields>\\r\\n          <Bands>\\r\\n            <Item1 Ref=\\\"17\\\" ControlType=\\\"TopMarginBand\\\" Name=\\\"TopMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item2 Ref=\\\"18\\\" ControlType=\\\"DetailBand\\\" Name=\\\"Detail1\\\" HeightF=\\\"32\\\" EvenStyleName=\\\"Kahua_Data1_Odd\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n              <SortFields>\\r\\n                <Item1 Ref=\\\"19\\\" FieldName=\\\"Number\\\" />\\r\\n              </SortFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"20\\\" ControlType=\\\"XRTable\\\" Name=\\\"table1\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1037.1528,32\\\" LocationFloat=\\\"31.7935,0\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\" BorderWidth=\\\"0\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"21\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow1\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"22\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell2\\\" Weight=\\\"0.6136319041948509\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"23\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Number]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"24\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell3\\\" Weight=\\\"1.9046617919182238\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"25\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Subject]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"26\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell11\\\" Weight=\\\"1.3103886684863923\\\" Text=\\\"tableCell11\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"27\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Author].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"28\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell4\\\" Weight=\\\"1.2520163257372616\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"29\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[OfficialResponder].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"30\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell5\\\" Weight=\\\"0.7804143942973318\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"31\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateSubmittedCalc]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"32\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"33\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell6\\\" Weight=\\\"0.7804143942973318\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"34\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DueDate]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"35\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"36\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell7\\\" Weight=\\\"0.846127154756962\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"37\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateResponded]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"38\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"39\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell8\\\" Weight=\\\"0.778377397517782\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"40\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[EarlyLateResponseCalc]\\\" />\\r\\n                            <Item2 Ref=\\\"41\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"ForeColor\\\" Expression=\\\"Iif(IsNullOrEmpty([DateResponded]), 'Red', 'DimGray')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"42\\\" UseForeColor=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item8>\\r\\n                        <Item9 Ref=\\\"43\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell9\\\" Weight=\\\"0.9801470602562214\\\" Padding=\\\"2,2,0,0,96\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"44\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Status]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item9>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"45\\\" UseFont=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"46\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item2>\\r\\n            <Item3 Ref=\\\"47\\\" ControlType=\\\"BottomMarginBand\\\" Name=\\\"BottomMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item4 Ref=\\\"48\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader1\\\" RepeatEveryPage=\\\"true\\\" HeightF=\\\"34.805557\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"24,24,4,4,100\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"49\\\" ControlType=\\\"XRTable\\\" Name=\\\"table2\\\" SizeF=\\\"1037.1528,23\\\" LocationFloat=\\\"31.7935,11.805557\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"50\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow3\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"51\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell12\\\" Weight=\\\"0.6647806383384094\\\" Text=\\\"Number\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"52\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldNumberLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"53\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"54\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell13\\\" Weight=\\\"2.063423158402328\\\" Text=\\\"Subject\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"55\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldSubjectLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"56\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"57\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell10\\\" Weight=\\\"1.4196149345441924\\\" Text=\\\"Submitter\\\" TextAlignment=\\\"MiddleLeft\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"58\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldAuthorLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"59\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"60\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell14\\\" Weight=\\\"1.3563770177918173\\\" CanShrink=\\\"true\\\" Text=\\\"Responder\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"61\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldOfficialResponderLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"62\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"63\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell15\\\" Weight=\\\"0.8454651325377021\\\" Text=\\\"Date Submitted\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"64\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateSubmittedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"65\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"66\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell16\\\" Weight=\\\"0.8454651325377046\\\" Text=\\\"Due Date\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"67\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDueDateLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"68\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"69\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell17\\\" Weight=\\\"0.916655320900951\\\" Text=\\\"Date Responded\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"70\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateRespondedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"71\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                        <Item8 Ref=\\\"72\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell1\\\" Weight=\\\"0.8432583437280821\\\" Text=\\\"Early / Late Response\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"73\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldEarlyLateResponseLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"74\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item8>\\r\\n                        <Item9 Ref=\\\"75\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell18\\\" Weight=\\\"1.0618463347951073\\\" Text=\\\"Status / Action / Response\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderWidth=\\\"0\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"76\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldStatusActionResponseLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"77\\\" UsePadding=\\\"false\\\" UseBorderWidth=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item9>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"78\\\" UsePadding=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"79\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item4>\\r\\n            <Item5 Ref=\\\"80\\\" ControlType=\\\"GroupFooterBand\\\" Name=\\\"GroupFooter1\\\" HeightF=\\\"38.88889\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"81\\\" ControlType=\\\"XRLabel\\\" Name=\\\"label2\\\" Multiline=\\\"true\\\" Text=\\\"label2\\\" TextAlignment=\\\"MiddleRight\\\" SizeF=\\\"185.41667,28.472221\\\" LocationFloat=\\\"883.52966,5.208334\\\" StyleName=\\\"Kahua_Group_Footer1\\\" Padding=\\\"2,2,0,0,100\\\">\\r\\n                  <ExpressionBindings>\\r\\n                    <Item1 Ref=\\\"82\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Concat('Items:  ', Count())\\\" />\\r\\n                  </ExpressionBindings>\\r\\n                  <StylePriority Ref=\\\"83\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n            </Item5>\\r\\n          </Bands>\\r\\n          <StyleSheet>\\r\\n            <Item1 Ref=\\\"84\\\" Name=\\\"Kahua_Report_Title1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"0,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 22pt, style=Bold\\\" ForeColor=\\\"255,109,121,127\\\" Sides=\\\"None\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item2 Ref=\\\"85\\\" Name=\\\"Kahua_Report_Title2\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 12pt, style=Italic, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item3 Ref=\\\"86\\\" Name=\\\"Kahua_Report_Title_Line\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" BackColor=\\\"Transparent\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item4 Ref=\\\"87\\\" Name=\\\"Kahua_Report_Summary\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item5 Ref=\\\"88\\\" Name=\\\"Kahua_Page_Header\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,109,121,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item6 Ref=\\\"89\\\" Name=\\\"Kahua_Page_Footer\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 11pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item7 Ref=\\\"90\\\" Name=\\\"Kahua_Group_Header1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" BorderColor=\\\"255,140,193,205\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n            <Item8 Ref=\\\"91\\\" Name=\\\"Kahua_Group_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item9 Ref=\\\"92\\\" Name=\\\"Kahua_Header1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" BackColor=\\\"255,177,213,222\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item10 Ref=\\\"93\\\" Name=\\\"Kahua_Data1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"5,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Center;0;None;Character;Default\\\" TextAlignment=\\\"MiddleLeft\\\" />\\r\\n            <Item11 Ref=\\\"94\\\" Name=\\\"Kahua_Data1_Odd\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item12 Ref=\\\"95\\\" Name=\\\"Kahua_Data1_Even\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"255,238,240,240\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item13 Ref=\\\"96\\\" Name=\\\"Kahua_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item14 Ref=\\\"97\\\" Name=\\\"Kahua_Page_Footer_DateTime\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,127,127,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item15 Ref=\\\"98\\\" Name=\\\"Kahua_Page_Footer_PoweredBy\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item16 Ref=\\\"99\\\" Name=\\\"Kahua_Url\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Underline\\\" ForeColor=\\\"255,0,0,100\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n          </StyleSheet>\\r\\n          <ComponentStorage>\\r\\n            <Item1 Ref=\\\"0\\\" ObjectType=\\\"DevExpress.DataAccess.Json.JsonDataSource,DevExpress.DataAccess.v23.2\\\" Name=\\\"RFIQueryDataSource\\\" Base64=\\\"PEpzb25EYXRhU291cmNlIE5hbWU9IlJGSVF1ZXJ5RGF0YVNvdXJjZSI+PFNjaGVtYT48Tm9kZSBOYW1lPSJSRkkiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpc2NpcGxpbmUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSRklSZWZlcmVuY2VOdW1iZXIxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJGSVJlZmVyZW5jZU51bWJlcjIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3ViQ29udHJhY3Rvck51bWJlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOdW1iZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1YmplY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpb3JpdHkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3RhdHVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dGhvciIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNvdXJjZVJGSSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDU0lDb2RlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNSb290IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb2RlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikl0ZW1zQ291bnQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvZGVEZXNjcmlwdGlvbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IkxvY2F0aW9uIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGVzY3JpcHRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmxvb3JUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlpvbmVUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb2plY3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNpdGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmVhclVuaXRzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFyZWFVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJWb2x1bWVVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcmVhTWVhc3VyZW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGhhc2UiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRWxldmF0aW9uIiBUeXBlPSJTeXN0ZW0uRG91YmxlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSb29tVGFnIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzYWJsZUhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJHcm9zc0FyZWEiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTmV0QXJlYSIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJDb3N0RWZmZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvc3RBbW91bnQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpbWVFZmZlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTnVtYmVyT2ZEYXlzIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVmZXJlbmNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlF1ZXN0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb3Bvc2VkU29sdXRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2VudFRvT3duZXJEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZXNwb25kZWREYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZW1hcmtzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik9mZmljaWFsUmVzcG9uZGVyIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iQXV0b3NlbmRUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0cnVjdGlvbnNUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVTZW50IiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRHVlRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVSZXNwb25kZWQiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25zZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBdXRvc2VuZFRvUmVzcG9uZGVycyIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdHJ1Y3Rpb25zVG9SZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbmRlcnNDYW5BZGRSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25kZXJzU2VlQWxsUmVzcG9uc2VzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RpZnlBbGxSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VTZW5kRGlhbG9nIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VUYXNrV29ya2Zsb3ciIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNlY29uZGFyeVJldmlld1BlcmlvZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByaW1hcnlSZXZpZXdQZXJpb2QiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJXb3JrZmxvd1N0ZXAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVzcG9uZGVycyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJBcnJheSI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iUmVzcG9uc2VTZWNvbmRhcnkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hlZXREZXRhaWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5Q29tbWVudHMiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tbWVudENyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJQcm9qZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld1N0YXJ0RGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld0VuZERhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXNjbGFpbWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb21wdFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5Gb3JDbGFyaWZpY2F0aW9uUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY2FsbFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5SZWFzb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya2Zsb3dPcGVyYXRpb25UYWciIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya1N1c3BlbmRlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGxldGVkRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJvb3RDYXVzZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PC9TY2hlbWE+PC9Kc29uRGF0YVNvdXJjZT4=\\\" />\\r\\n          </ComponentStorage>\\r\\n          <ObjectStorage>\\r\\n            <Item1 ObjectType=\\\"DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v23.2\\\" Ref=\\\"7\\\" Content=\\\"System.Drawing.Image\\\" Type=\\\"System.Type\\\" />\\r\\n          </ObjectStorage>\\r\\n        </XtraReportsLayoutSerializer>\\r\\n      </ReportXml>\\r\\n    </DataSourceReport>\\r\\n    <DataSourceReport DataSourceName=\\\"RFIQueryDataSource\\\" Name=\\\"RFIReportDS\\\" Title=\\\"[RFIReportLabel]\\\" AppName=\\\"kahua_AEC_RFI\\\" Type=\\\"Report\\\" Author=\\\"Kahua\\\" Description=\\\"[RFIReportDesc]\\\">\\r\\n      <ReportXml>\\r\\n        <XtraReportsLayoutSerializer SerializerVersion=\\\"23.2.5.0\\\" Ref=\\\"1\\\" ControlType=\\\"DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a\\\" Name=\\\"Report1\\\" Landscape=\\\"true\\\" Margins=\\\"0, 0, 0, 0\\\" PageWidth=\\\"1100\\\" PageHeight=\\\"850\\\" Version=\\\"23.2\\\" DataSource=\\\"#Ref-0\\\">\\r\\n          <Parameters>\\r\\n            <Item1 Ref=\\\"3\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionLabel]\\\" Name=\\\"PartitionLabel\\\" />\\r\\n            <Item2 Ref=\\\"4\\\" Visible=\\\"false\\\" ValueInfo=\\\"[PartitionPath]\\\" Name=\\\"PartitionPath\\\" />\\r\\n            <Item3 Ref=\\\"5\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ReportTitle]\\\" Name=\\\"ReportTitle\\\" />\\r\\n            <Item4 Ref=\\\"6\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CompanyLogo]\\\" Name=\\\"CompanyLogo\\\" />\\r\\n            <Item5 Ref=\\\"8\\\" Visible=\\\"false\\\" Name=\\\"ProjectLogo\\\" Type=\\\"#Ref-7\\\" />\\r\\n            <Item6 Ref=\\\"9\\\" Visible=\\\"false\\\" ValueInfo=\\\"[DomainLabel]\\\" Name=\\\"DomainLabel\\\" />\\r\\n            <Item7 Ref=\\\"10\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneLong]\\\" Name=\\\"CurrentTimeZoneLong\\\" />\\r\\n            <Item8 Ref=\\\"11\\\" Visible=\\\"false\\\" ValueInfo=\\\"[CurrentTimeZoneShort]\\\" Name=\\\"CurrentTimeZoneShort\\\" />\\r\\n            <Item9 Ref=\\\"12\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ItemsCount]\\\" Name=\\\"ItemsCount\\\" />\\r\\n            <Item10 Ref=\\\"13\\\" Visible=\\\"false\\\" ValueInfo=\\\"[RunInfo]\\\" Name=\\\"RunInfo\\\" />\\r\\n            <Item11 Ref=\\\"14\\\" Visible=\\\"false\\\" ValueInfo=\\\"[ListName]\\\" Name=\\\"ListName\\\" />\\r\\n          </Parameters>\\r\\n          <Bands>\\r\\n            <Item1 Ref=\\\"15\\\" ControlType=\\\"TopMarginBand\\\" Name=\\\"TopMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item2 Ref=\\\"16\\\" ControlType=\\\"DetailBand\\\" Name=\\\"Detail1\\\" HeightF=\\\"32\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n              <SortFields>\\r\\n                <Item1 Ref=\\\"17\\\" FieldName=\\\"Number\\\" SortOrder=\\\"Descending\\\" />\\r\\n              </SortFields>\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"18\\\" ControlType=\\\"XRTable\\\" Name=\\\"table1\\\" SizeF=\\\"1040.9723,32\\\" LocationFloat=\\\"29.861002,0\\\" EvenStyleName=\\\"Kahua_Data1_Even\\\" OddStyleName=\\\"Kahua_Data1_Odd\\\" Font=\\\"Microsoft Sans Serif, 9pt\\\" BorderWidth=\\\"0\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"19\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow1\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"20\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell1\\\" Weight=\\\"0.9609000408442532\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"21\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Number]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"22\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"23\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell2\\\" Weight=\\\"2.7248958210301635\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"24\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Subject]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"25\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"26\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell8\\\" Weight=\\\"1.6442082268483487\\\" Text=\\\"tableCell8\\\" TextAlignment=\\\"MiddleLeft\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"27\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"JOIN([Location].Multiple([ShortLabel]), ', ')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"28\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"29\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell4\\\" Weight=\\\"1.602377940897619\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"30\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[OfficialResponder].[ShortLabel]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"31\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"32\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell5\\\" Weight=\\\"1.0098924643675404\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"33\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Date]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"34\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"35\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell6\\\" Weight=\\\"1.0445606127456997\\\" TextFormatString=\\\"{0:d}\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,4,4,100\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"36\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[DateResponded]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"37\\\" UsePadding=\\\"false\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"38\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell9\\\" Weight=\\\"1.0524347469375\\\" Text=\\\"tableCell9\\\" TextAlignment=\\\"MiddleLeft\\\" BorderColor=\\\"255,153,180,209\\\" Borders=\\\"Bottom\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"39\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"[Status]\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"40\\\" UseBorderColor=\\\"false\\\" UseBorders=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"41\\\" UseFont=\\\"false\\\" UseBorderWidth=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"42\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item2>\\r\\n            <Item3 Ref=\\\"43\\\" ControlType=\\\"BottomMarginBand\\\" Name=\\\"BottomMargin1\\\" HeightF=\\\"0\\\" />\\r\\n            <Item4 Ref=\\\"44\\\" ControlType=\\\"GroupHeaderBand\\\" Name=\\\"GroupHeader1\\\" RepeatEveryPage=\\\"true\\\" HeightF=\\\"34.805557\\\" StyleName=\\\"Kahua_Header1\\\" Padding=\\\"24,24,4,4,100\\\">\\r\\n              <Controls>\\r\\n                <Item1 Ref=\\\"45\\\" ControlType=\\\"XRTable\\\" Name=\\\"table2\\\" TextAlignment=\\\"MiddleLeft\\\" SizeF=\\\"1040.9723,23\\\" LocationFloat=\\\"29.861002,11.805557\\\" Padding=\\\"4,4,4,4,100\\\">\\r\\n                  <Rows>\\r\\n                    <Item1 Ref=\\\"46\\\" ControlType=\\\"XRTableRow\\\" Name=\\\"tableRow3\\\" Weight=\\\"1\\\">\\r\\n                      <Cells>\\r\\n                        <Item1 Ref=\\\"47\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell12\\\" Weight=\\\"0.7217905505955529\\\" Text=\\\"Number\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"48\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldNumberLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"49\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item1>\\r\\n                        <Item2 Ref=\\\"50\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell13\\\" Weight=\\\"2.0468329446736964\\\" Text=\\\"Subject\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"51\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldSubjectLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"52\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item2>\\r\\n                        <Item3 Ref=\\\"53\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell3\\\" Weight=\\\"1.2350635722082017\\\" Text=\\\"Location\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"54\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldLocationLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                        </Item3>\\r\\n                        <Item4 Ref=\\\"55\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell15\\\" Weight=\\\"1.2036423315470828\\\" Text=\\\"Primary Responder\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"56\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldOfficialResponderLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"57\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item4>\\r\\n                        <Item5 Ref=\\\"58\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell16\\\" Weight=\\\"0.7585908975645559\\\" Text=\\\"Date\\\" TextAlignment=\\\"MiddleCenter\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"59\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"60\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item5>\\r\\n                        <Item6 Ref=\\\"61\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell7\\\" Weight=\\\"0.7846322264416545\\\" Text=\\\"Responded\\\" TextAlignment=\\\"MiddleCenter\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"62\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldDateRespondedLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"63\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item6>\\r\\n                        <Item7 Ref=\\\"64\\\" ControlType=\\\"XRTableCell\\\" Name=\\\"tableCell17\\\" Weight=\\\"0.7905461398503599\\\" Text=\\\"Status\\\" TextAlignment=\\\"MiddleLeft\\\" Padding=\\\"4,4,8,8,100\\\">\\r\\n                          <ExpressionBindings>\\r\\n                            <Item1 Ref=\\\"65\\\" EventName=\\\"BeforePrint\\\" PropertyName=\\\"Text\\\" Expression=\\\"Localize('FieldStatusLabel')\\\" />\\r\\n                          </ExpressionBindings>\\r\\n                          <StylePriority Ref=\\\"66\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                        </Item7>\\r\\n                      </Cells>\\r\\n                    </Item1>\\r\\n                  </Rows>\\r\\n                  <StylePriority Ref=\\\"67\\\" UsePadding=\\\"false\\\" UseTextAlignment=\\\"false\\\" />\\r\\n                </Item1>\\r\\n              </Controls>\\r\\n              <StylePriority Ref=\\\"68\\\" UsePadding=\\\"false\\\" />\\r\\n            </Item4>\\r\\n          </Bands>\\r\\n          <StyleSheet>\\r\\n            <Item1 Ref=\\\"69\\\" Name=\\\"Kahua_Report_Title1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"0,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 22pt, style=Bold\\\" ForeColor=\\\"255,109,121,127\\\" Sides=\\\"None\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item2 Ref=\\\"70\\\" Name=\\\"Kahua_Report_Title2\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 12pt, style=Italic, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item3 Ref=\\\"71\\\" Name=\\\"Kahua_Report_Title_Line\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" BackColor=\\\"Transparent\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item4 Ref=\\\"72\\\" Name=\\\"Kahua_Report_Summary\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,72,86,94\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item5 Ref=\\\"73\\\" Name=\\\"Kahua_Page_Header\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,109,121,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item6 Ref=\\\"74\\\" Name=\\\"Kahua_Page_Footer\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 11pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item7 Ref=\\\"75\\\" Name=\\\"Kahua_Group_Header1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" BorderColor=\\\"255,140,193,205\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n            <Item8 Ref=\\\"76\\\" Name=\\\"Kahua_Group_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Bold\\\" ForeColor=\\\"255,62,151,172\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item9 Ref=\\\"77\\\" Name=\\\"Kahua_Header1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,72,86,94\\\" BackColor=\\\"255,177,213,222\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item10 Ref=\\\"78\\\" Name=\\\"Kahua_Data1\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"5,0,0,0,100\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,72,86,94\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Center;0;None;Character;Default\\\" TextAlignment=\\\"MiddleLeft\\\" />\\r\\n            <Item11 Ref=\\\"79\\\" Name=\\\"Kahua_Data1_Odd\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item12 Ref=\\\"80\\\" Name=\\\"Kahua_Data1_Even\\\" BorderStyle=\\\"Inset\\\" Padding=\\\"4,4,4,4,100\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"255,238,240,240\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item13 Ref=\\\"81\\\" Name=\\\"Kahua_Footer1\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 9pt, charSet=0\\\" ForeColor=\\\"255,109,121,127\\\" BackColor=\\\"White\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item14 Ref=\\\"82\\\" Name=\\\"Kahua_Page_Footer_DateTime\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt\\\" ForeColor=\\\"255,127,127,127\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item15 Ref=\\\"83\\\" Name=\\\"Kahua_Page_Footer_PoweredBy\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 8pt\\\" ForeColor=\\\"Black\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" />\\r\\n            <Item16 Ref=\\\"84\\\" Name=\\\"Kahua_Url\\\" BorderStyle=\\\"Inset\\\" Font=\\\"Microsoft Sans Serif, 10pt, style=Underline\\\" ForeColor=\\\"255,0,0,100\\\" BorderColor=\\\"255,177,213,222\\\" BorderDashStyle=\\\"Solid\\\" Sides=\\\"Bottom\\\" StringFormat=\\\"Near;Near;0;None;Character;Default\\\" BorderWidthSerializable=\\\"1\\\" />\\r\\n          </StyleSheet>\\r\\n          <ComponentStorage>\\r\\n            <Item1 Ref=\\\"0\\\" ObjectType=\\\"DevExpress.DataAccess.Json.JsonDataSource,DevExpress.DataAccess.v23.2\\\" Name=\\\"RFIQueryDataSource\\\" Base64=\\\"PEpzb25EYXRhU291cmNlIE5hbWU9IlJGSVF1ZXJ5RGF0YVNvdXJjZSI+PFNjaGVtYT48Tm9kZSBOYW1lPSJSRkkiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZUFwcCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb2NrS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1hcmt1cEVuYWJsZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBvcnRhYmxlVmlld0luc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSHViUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0V4Y2hhbmdlRW50aXR5IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFeGNoYW5nZVNvdXJjZVBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW50aXR5TGlua1VybCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTaG9ydExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRpc2NpcGxpbmUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHlwZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSRklSZWZlcmVuY2VOdW1iZXIxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJGSVJlZmVyZW5jZU51bWJlcjIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3ViQ29udHJhY3Rvck51bWJlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOdW1iZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1YmplY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJpb3JpdHkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU3RhdHVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkF1dGhvciIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJPYmplY3QiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpcnN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMYXN0TmFtZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNaWRkbGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByZWZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTdWZmaXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVGl0bGUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFbXBsb3llZSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGVyc29uSWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRW1haWxBZGRyZXNzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZhY2Vib29rIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlR3aXR0ZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTGlua2VkSW4iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGlyZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vYmlsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGYXgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNEb21haW5Vc2VyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpbkFkbWluIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0luU3luY1dpdGhDb21tdW5pdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzUHVibGlzaGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VEb21haW5JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFjY291bnRJbnZpdGF0aW9uU2VudERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWN0aXZhdGlvbkRhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29udGFjdENvbXBhbnlMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0RnVsbE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb21wYW55Q29udGFjdExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZ1bGxUZXh0SW5kZXhDb250ZW50IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBsYW5HcmlkQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZpZWxkV2lyZUFQSUtleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21UZXh0MyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21EYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IlNvdXJjZVJGSSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDU0lDb2RlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNSb290IiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb2RlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5vdGVzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikl0ZW1zQ291bnQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvZGVEZXNjcmlwdGlvbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PC9Ob2RlPjxOb2RlIE5hbWU9IkxvY2F0aW9uIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IkFycmF5Ij48Tm9kZSBOYW1lPSJJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRyYW5zZm9ybUlkZW50aWZpZXIiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZUlkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEb21haW5QYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1vZGlmaWVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDbGllbnRJZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJGdWxsVGV4dEluZGV4Q29udGVudCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTm90ZXMiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVjeWNsZUJpbkxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGVzY3JpcHRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmxvb3JUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlpvbmVUeXBlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb2plY3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNpdGVOYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxpbmVhclVuaXRzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFyZWFVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJWb2x1bWVVbml0cyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBcmVhTWVhc3VyZW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGhhc2UiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRWxldmF0aW9uIiBUeXBlPSJTeXN0ZW0uRG91YmxlIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSb29tVGFnIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlVzYWJsZUhlaWdodCIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJHcm9zc0FyZWEiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTmV0QXJlYSIgVHlwZT0iU3lzdGVtLkRvdWJsZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJlbnRQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJDb3N0RWZmZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvc3RBbW91bnQiIFR5cGU9IlN5c3RlbS5Eb3VibGUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlRpbWVFZmZlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTnVtYmVyT2ZEYXlzIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVmZXJlbmNlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlF1ZXN0aW9uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb3Bvc2VkU29sdXRpb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2VudFRvT3duZXJEYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZXNwb25kZWREYXRlIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iT3duZXJSZW1hcmtzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik9mZmljaWFsUmVzcG9uZGVyIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9Ik9iamVjdCI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iQXV0b3NlbmRUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0cnVjdGlvbnNUb09mZmljaWFsUmVzcG9uZGVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVTZW50IiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRHVlRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRhdGVSZXNwb25kZWQiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25zZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBdXRvc2VuZFRvUmVzcG9uZGVycyIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdHJ1Y3Rpb25zVG9SZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlc3BvbmRlcnNDYW5BZGRSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXNwb25kZXJzU2VlQWxsUmVzcG9uc2VzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RpZnlBbGxSZXNwb25kZXJzIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VTZW5kRGlhbG9nIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJVc2VUYXNrV29ya2Zsb3ciIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNlY29uZGFyeVJldmlld1BlcmlvZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByaW1hcnlSZXZpZXdQZXJpb2QiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJXb3JrZmxvd1N0ZXAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUmVzcG9uZGVycyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJBcnJheSI+PE5vZGUgTmFtZT0iSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUcmFuc2Zvcm1JZGVudGlmaWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSW5zdGFuY2VJZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRG9tYWluUGFydGl0aW9uSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDcmVhdGVkRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNb2RpZmllZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ2xpZW50SWQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQXBwTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY3ljbGVCaW5MYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJTb3VyY2VBcHAiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9ja0tleSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJNYXJrdXBFbmFibGVkIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQb3J0YWJsZVZpZXdJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikh1YlBhdGgiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNFeGNoYW5nZUVudGl0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRXhjaGFuZ2VTb3VyY2VQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkVudGl0eUxpbmtVcmwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmlyc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikxhc3ROYW1lIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ik1pZGRsZU5hbWUiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUHJlZml4IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlN1ZmZpeCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJUaXRsZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0VtcGxveWVlIiBUeXBlPSJTeXN0ZW0uQm9vbGVhbiIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQZXJzb25JZCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbWFpbEFkZHJlc3MiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmFjZWJvb2siIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHdpdHRlciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMaW5rZWRJbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXJlY3QiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9iaWxlIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkZheCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJc0RvbWFpblVzZXIiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRG9tYWluQWRtaW4iIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzSW5TeW5jV2l0aENvbW11bml0eSIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iSXNQdWJsaXNoZWQiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNvdXJjZURvbWFpbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQWNjb3VudEludml0YXRpb25TZW50RGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJBY3RpdmF0aW9uRGF0ZVRpbWUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDb250YWN0Q29tcGFueUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbnRhY3RGdWxsTmFtZUxhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbXBhbnlDb250YWN0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hvcnRMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJMb25nTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRGV0YWlsTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUGxhbkdyaWRBUElLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRmllbGRXaXJlQVBJS2V5IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQxIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbVRleHQzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbUxvb2t1cDEiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3VzdG9tTG9va3VwMiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJDdXN0b21Mb29rdXAzIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkN1c3RvbURhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PE5vZGUgTmFtZT0iUmVzcG9uc2VTZWNvbmRhcnkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2hlZXREZXRhaWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU2Vjb25kYXJ5Q29tbWVudHMiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iQXJyYXkiPjxOb2RlIE5hbWU9IklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iVHJhbnNmb3JtSWRlbnRpZmllciIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJJbnN0YW5jZSIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9Ikluc3RhbmNlSWQiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJQYXJ0aXRpb25JZCIgVHlwZT0iU3lzdGVtLkludDY0IiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRvbWFpblBhcnRpdGlvbklkIiBUeXBlPSJTeXN0ZW0uSW50NjQiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ3JlYXRlZERhdGVUaW1lIiBUeXBlPSJTeXN0ZW0uRGF0ZVRpbWUiIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTW9kaWZpZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNsaWVudElkIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlNob3J0TGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTG9uZ0xhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkRldGFpbExhYmVsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkFwcE5hbWVMYWJlbCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZWN5Y2xlQmluTGFiZWwiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iRnVsbFRleHRJbmRleENvbnRlbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iU291cmNlQXBwIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkxvY2tLZXkiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iTWFya3VwRW5hYmxlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iUG9ydGFibGVWaWV3SW5zdGFuY2UiIFR5cGU9IlN5c3RlbS5JbnQ2NCIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJIdWJQYXRoIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IklzRXhjaGFuZ2VFbnRpdHkiIFR5cGU9IlN5c3RlbS5Cb29sZWFuIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkV4Y2hhbmdlU291cmNlUGF0aCIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJFbnRpdHlMaW5rVXJsIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IkNvbW1lbnQiIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tbWVudENyZWF0ZWREYXRlVGltZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjwvTm9kZT48Tm9kZSBOYW1lPSJQcm9qZWN0IiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld1N0YXJ0RGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJldmlld0VuZERhdGUiIFR5cGU9IlN5c3RlbS5EYXRlVGltZSIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJOb3RlcyIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJEaXNjbGFpbWVyIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlByb21wdFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5Gb3JDbGFyaWZpY2F0aW9uUmVhc29uIiBUeXBlPSJTeXN0ZW0uU3RyaW5nIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJlY2FsbFJlYXNvbiIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48Tm9kZSBOYW1lPSJSZXR1cm5SZWFzb24iIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya2Zsb3dPcGVyYXRpb25UYWciIFR5cGU9IlN5c3RlbS5TdHJpbmciIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iV29ya1N1c3BlbmRlZCIgVHlwZT0iU3lzdGVtLkJvb2xlYW4iIFNlbGVjdGVkPSJ0cnVlIiBOb2RlVHlwZT0iUHJvcGVydHkiIC8+PE5vZGUgTmFtZT0iQ29tcGxldGVkRGF0ZSIgVHlwZT0iU3lzdGVtLkRhdGVUaW1lIiBTZWxlY3RlZD0idHJ1ZSIgTm9kZVR5cGU9IlByb3BlcnR5IiAvPjxOb2RlIE5hbWU9IlJvb3RDYXVzZSIgVHlwZT0iU3lzdGVtLlN0cmluZyIgU2VsZWN0ZWQ9InRydWUiIE5vZGVUeXBlPSJQcm9wZXJ0eSIgLz48L05vZGU+PC9TY2hlbWE+PC9Kc29uRGF0YVNvdXJjZT4=\\\" />\\r\\n          </ComponentStorage>\\r\\n          <ObjectStorage>\\r\\n            <Item1 ObjectType=\\\"DevExpress.XtraReports.Serialization.ObjectStorageInfo, DevExpress.XtraReports.v23.2\\\" Ref=\\\"7\\\" Content=\\\"System.Drawing.Image\\\" Type=\\\"System.Type\\\" />\\r\\n          </ObjectStorage>\\r\\n        </XtraReportsLayoutSerializer>\\r\\n      </ReportXml>\\r\\n    </DataSourceReport>\\r\\n  </App.Reports>\\r\\n  <LookupLists>\\r\\n    <LookupList Name=\\\"RFIStatus\\\" Label=\\\"[LookupListRFIStatusLabel]\\\" Description=\\\"[LookupListRFIStatusDescription]\\\">\\r\\n      <Value />\\r\\n      <Value Label=\\\"[RFIStatusOpen]\\\">Open</Value>\\r\\n      <Value Label=\\\"[RFIStatusClosed]\\\">Closed</Value>\\r\\n    </LookupList>\\r\\n    <LookupList Name=\\\"RFIReason\\\" Label=\\\"[LookupListRFIReasonLabel]\\\" Description=\\\"[LookupListRFIReasonDescription]\\\">\\r\\n      <Value />\\r\\n      <Value Label=\\\"[RFIReasonInsufficientInformation]\\\">Insufficient Information</Value>\\r\\n      <Value Label=\\\"[RFIReasonConflict]\\\">Conflict</Value>\\r\\n      <Value Label=\\\"[RFIReasonAlternateProposal]\\\">Alternate Proposal</Value>\\r\\n      <Value Label=\\\"[RFIReasonClarification]\\\">Clarification</Value>\\r\\n    </LookupList>\\r\\n    <LookupList Name=\\\"RFITimeEffect\\\" Label=\\\"[LookupListTimeEffectLabel]\\\" Description=\\\"[LookupListTimeEffectDescription]\\\">\\r\\n      <Value />\\r\\n      <Value Label=\\\"[RFITimeEffectNone]\\\">None</Value>\\r\\n      <Value Label=\\\"[RFITimeEffectUnknown]\\\">Unknown</Value>\\r\\n      <Value Label=\\\"[RFITimeEffectDelay]\\\">Delay</Value>\\r\\n      <Value Label=\\\"[RFITimeEffectTimeSavings]\\\">Time Savings</Value>\\r\\n    </LookupList>\\r\\n    <LookupList Name=\\\"RFICostEffect\\\" Label=\\\"[LookupListCostEffectLabel]\\\" Description=\\\"[LookupListCostEffectDescription]\\\">\\r\\n      <Value />\\r\\n      <Value Label=\\\"[RFICostEffectNone]\\\">None</Value>\\r\\n      <Value Label=\\\"[RFICostEffectUnknown]\\\">Unknown</Value>\\r\\n      <Value Label=\\\"[RFICostEffectIncrease]\\\">Increase</Value>\\r\\n      <Value Label=\\\"[RFICostEffectDecrease]\\\">Decrease</Value>\\r\\n    </LookupList>\\r\\n    <LookupList Name=\\\"RFIDiscipline\\\" Label=\\\"[LookupListRFIDisciplineLabel]\\\" Description=\\\"[LookupListRFIDisciplineDescription]\\\">\\r\\n      <Value />\\r\\n      <Value Label=\\\"[RFIDisciplineArchitect]\\\">Architect</Value>\\r\\n      <Value Label=\\\"[RFIDisciplineElectrical]\\\">Electrical</Value>\\r\\n      <Value Label=\\\"[RFIDisciplineInteriorDesign]\\\">Interior Design</Value>\\r\\n      <Value Label=\\\"[RFIDisciplineLandscape]\\\">Landscape</Value>\\r\\n      <Value Label=\\\"[RFIDisciplineMechanical]\\\">Mechanical</Value>\\r\\n      <Value Label=\\\"[RFIDisciplinePlumbing]\\\">Plumbing</Value>\\r\\n      <Value Label=\\\"[RFIDisciplineStructural]\\\">Structural</Value>\\r\\n    </LookupList>\\r\\n    <LookupList Name=\\\"RFIType\\\" Label=\\\"[LookupListTypeLabel]\\\" Description=\\\"[LookupListTypeDescription]\\\">\\r\\n      <Value />\\r\\n      <Value Label=\\\"[RFITypeDesignClarification]\\\">Design Clarification</Value>\\r\\n      <Value Label=\\\"[RFITypeExistingConditionConflict]\\\">Existing Condition Conflict</Value>\\r\\n      <Value Label=\\\"[RFITypeScheduleClarification]\\\">Schedule Clarification</Value>\\r\\n      <Value Label=\\\"[RFITypeScopeClarification]\\\">Scope Clarification</Value>\\r\\n    </LookupList>\\r\\n  </LookupLists>\\r\\n  <Views>\\r\\n    <View Name=\\\"RFIPreview\\\" AllowInputWhenBusy=\\\"Default\\\" IsCloseable=\\\"true\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Dynamic\\\" Label=\\\"[ViewRFIPreviewLabel]\\\" IsWindow=\\\"true\\\" Title=\\\"{DataSources[kahua_AEC_RFI.RFIData].Entities.Current.Entity.Attributes[RFI.Number].Data.Value} {DataSources[kahua_AEC_RFI.RFIData].Entities.Current.Entity.Attributes[RFI.Subject].Data.Value}\\\" Style=\\\"kahua.kdk.ui.Style\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <LoadActions>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action0\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"Get\\\" Scope=\\\"View\\\" Parameters=\\\"Id={View.Parameters[EntityId]};PartitionId={View.Parameters[PartitionId]}\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n              <IsGreaterThan>0</IsGreaterThan>\\r\\n            </Expression>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n      </LoadActions>\\r\\n      <RefreshAction />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls>\\r\\n        <Control Name=\\\"Control21\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <Controls>\\r\\n            <Control Name=\\\"Control22\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"Control23\\\" Type=\\\"AnchorPanel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"Control24\\\" Label=\\\"[AnchorSectionDetailsLabelCapitalized]\\\" Type=\\\"AnchorSection\\\" HideHeader=\\\"False\\\" IsCollapsable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[AnchorSectionDetailsLabel]\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                      <Controls>\\r\\n                        <Control Name=\\\"Control25\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                          <Controls>\\r\\n                            <Control Name=\\\"Control26\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldNumberLabel]\\\" DataTag=\\\"FieldNumberLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFINumber\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldNumberLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Number\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control28\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateLabel]\\\" DataTag=\\\"FieldDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIDate\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Date\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"2\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control30\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldSubjectLabel]\\\" DataTag=\\\"FieldSubjectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFISubject\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldSubjectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Subject\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" ColumnSpan=\\\"3\\\" Row=\\\"3\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control32\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldStatusLabel]\\\" DataTag=\\\"FieldStatusLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"4\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIStatus\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldStatusLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Status\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIStatus\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"4\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control34\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldAuthorLabel]\\\" DataTag=\\\"FieldAuthorLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIAuthorContactCompanyLabel\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldAuthorLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Author.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"5\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control36\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCSICodeLabel]\\\" DataTag=\\\"FieldCSICodeLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"6\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFICSICode\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldCSICodeLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CSICode\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"6\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control38\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldLocationLabel]\\\" DataTag=\\\"FieldLocationLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"7\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFILocation\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldLocationLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Location\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"7\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control40\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCostEffectLabel]\\\" DataTag=\\\"FieldCostEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"8\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFICostEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldCostEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CostEffect\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFICostEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"8\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control42\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReasonLabel]\\\" DataTag=\\\"FieldReasonLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"9\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIReason\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldReasonLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reason\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIReason\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"9\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control44\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldTimeEffectLabel]\\\" DataTag=\\\"FieldTimeEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"10\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFITimeEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldTimeEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.TimeEffect\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFITimeEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"10\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control46\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReferenceLabel]\\\" DataTag=\\\"FieldReferenceLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"11\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIReference\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldReferenceLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reference\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" ColumnSpan=\\\"3\\\" Row=\\\"11\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control48\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldQuestionLabel]\\\" DataTag=\\\"FieldQuestionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"12\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIQuestion\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldQuestionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Question\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" ColumnSpan=\\\"3\\\" Row=\\\"12\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control50\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldProposedSolutionLabel]\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"13\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIProposedSolution\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.ProposedSolution\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" ColumnSpan=\\\"3\\\" Row=\\\"13\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                          </Controls>\\r\\n                        </Control>\\r\\n                      </Controls>\\r\\n                    </Control>\\r\\n                    <Control Name=\\\"Control52\\\" Label=\\\"[AnchorSectionResponseLabelCapitalized]\\\" Type=\\\"AnchorSection\\\" HideHeader=\\\"False\\\" IsCollapsable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[AnchorSectionResponseLabel]\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                      <Controls>\\r\\n                        <Control Name=\\\"Control53\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                          <Controls>\\r\\n                            <Control Name=\\\"Control54\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldOfficialResponderLabel]\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"1\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIOfficialResponderContactCompanyLabel\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OfficialResponder.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"1\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control56\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[Responders]\\\" DataTag=\\\"Responders\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIResponders\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"Responders\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Responders\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"2\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control58\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDueDateLabel]\\\" DataTag=\\\"FieldDueDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIDueDate\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldDueDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DueDate\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"3\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control60\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateRespondedLabel]\\\" DataTag=\\\"FieldDateRespondedLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIDateResponded\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldDateRespondedLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DateResponded\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"5\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control62\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldResponseLabel]\\\" DataTag=\\\"FieldResponseLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"6\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIResponse\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldResponseLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Response\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" ColumnSpan=\\\"3\\\" Row=\\\"6\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                          </Controls>\\r\\n                        </Control>\\r\\n                      </Controls>\\r\\n                    </Control>\\r\\n                    <Control Name=\\\"Control64\\\" Label=\\\"[AnchorSectionReferencesLabelCapitalized]\\\" Type=\\\"AnchorSection\\\" IsCollapsable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[AnchorSectionReferencesLabel]\\\" DisplayHint=\\\"Default\\\" Row=\\\"4\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                      <Controls>\\r\\n                        <Control Name=\\\"kahua_DocumentReferencesView\\\" Type=\\\"Field\\\" FieldType=\\\"Reference\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OutwardReferences\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" AutoSave=\\\"True\\\" FileType=\\\"Attachment\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n                          <Settings>\\r\\n                            <ReferenceSettings CanToggleThumbnails=\\\"true\\\" CanDownload=\\\"true\\\" CanMarkup=\\\"true\\\" CanOpen=\\\"true\\\" AlwaysIncludeOnSend=\\\"true\\\" AlwaysIncludeMarkupOnSend=\\\"true\\\" AlwaysIncludeInDefaultComposite=\\\"true\\\" AppName=\\\"kahua_AEC_RFI\\\" EntityDefName=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n                          </Settings>\\r\\n                        </Control>\\r\\n                      </Controls>\\r\\n                    </Control>\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n            <Control Name=\\\"Control66\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" ColumnSpan=\\\"2\\\" Row=\\\"2\\\" VerticalAlignment=\\\"Bottom\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"Control67\\\" Label=\\\"[ActionEditLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"100\\\">\\r\\n                  <Action AutomationId=\\\"Action1\\\" Ref=\\\"kahua_AEC_RFI.RFIEditSelect\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Edit;Region=Detail;EntityId={View.Parameters[EntityId]};EntityPartitionId={View.Parameters[EntityPartitionId]};EntityDefName={View.Parameters[EntityDefName]}\\\" />\\r\\n                  <VisibleWhen>\\r\\n                    <Attribute Name=\\\"RFI.IsActive\\\" ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                      <Equals>True</Equals>\\r\\n                    </Attribute>\\r\\n                  </VisibleWhen>\\r\\n                </Control>\\r\\n                <Control Name=\\\"Control68\\\" Label=\\\"[ActionSaveLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" MinWidth=\\\"100\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" HorizontalAlignment=\\\"Center\\\" Margin=\\\"5 0 0 0\\\">\\r\\n                  <Action AutomationId=\\\"Action2\\\" Ref=\\\"kahua_AEC_RFI.RFISaveAction\\\" Scope=\\\"View\\\" />\\r\\n                  <VisibleWhen>\\r\\n                    <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.IsDirty}\\\">\\r\\n                      <Equals>True</Equals>\\r\\n                    </Expression>\\r\\n                    <And ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                      <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n                        <IsNotNull />\\r\\n                      </Expression>\\r\\n                    </And>\\r\\n                  </VisibleWhen>\\r\\n                </Control>\\r\\n                <Control Name=\\\"Control69\\\" Label=\\\"[ActionSendLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"3\\\" HorizontalAlignment=\\\"Center\\\" Margin=\\\"5 0 0 0\\\" Width=\\\"100\\\">\\r\\n                  <Action AutomationId=\\\"Action3\\\" Ref=\\\"kahua_AEC_RFI.RFISendAction\\\" Parameters=\\\"AdditionalAfterLoadDefaultsScript=kahua_AEC_RFI.FillInMessageItems;AdditionalEntityId={View.Parameters[EntityId]};Region=Detail;AttachEntitiesId={View.Parameters[EntityId]};AttachEntityPartitionId={View.Parameters[EntityPartitionId]};AttachControlName=MessageAttachmentsUploader\\\" />\\r\\n                  <VisibleWhen>\\r\\n                    <Attribute Name=\\\"RFI.IsActive\\\" ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                      <Equals>True</Equals>\\r\\n                    </Attribute>\\r\\n                  </VisibleWhen>\\r\\n                </Control>\\r\\n                <Control Name=\\\"Control70\\\" Label=\\\"[ActionViewLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"4\\\" HorizontalAlignment=\\\"Center\\\" Margin=\\\"5 0 0 0\\\" Width=\\\"100\\\">\\r\\n                  <Action AutomationId=\\\"Action4\\\" Ref=\\\"kahua_AEC_RFI.RFIViewSelect\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Preview;Region=Detail;EntityId={View.Parameters[EntityId]};EntityPartitionId={View.Parameters[EntityPartitionId]};EntityDefName={View.Parameters[EntityDefName]}\\\" />\\r\\n                  <VisibleWhen>\\r\\n                    <Attribute Name=\\\"RFI.IsActive\\\" ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                      <Equals>True</Equals>\\r\\n                    </Attribute>\\r\\n                  </VisibleWhen>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n          </Controls>\\r\\n        </Control>\\r\\n      </Controls>\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n      <Menu Ref=\\\"kahua_AEC_RFI.kahua_AEC_RFIItemMenu\\\" />\\r\\n    </View>\\r\\n    <View AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"RFIPreview\\\" AllowInputWhenBusy=\\\"Default\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Dynamic\\\" Label=\\\"[ViewRFIPreviewLabel]\\\" IsWindow=\\\"true\\\" Style=\\\"kahua.kdk.ui.Style\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <LoadActions>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action5\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"Get\\\" Scope=\\\"View\\\" Parameters=\\\"Id={View.Parameters[EntityId]}\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n              <IsGreaterThan>0</IsGreaterThan>\\r\\n            </Expression>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action6\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"LoadDefaults\\\" Scope=\\\"View\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n              <IsNull />\\r\\n            </Expression>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n      </LoadActions>\\r\\n      <RefreshAction />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls>\\r\\n        <Control Name=\\\"Control71\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <Controls>\\r\\n            <Control Name=\\\"Control72\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"Vertical\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"Control73\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldNumberLabel]\\\" DataTag=\\\"FieldNumberLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"1\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFINumber\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldNumberLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Number\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control75\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateLabel]\\\" DataTag=\\\"FieldDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIDate\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Date\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"4\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control77\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldSubjectLabel]\\\" DataTag=\\\"FieldSubjectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFISubject\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldSubjectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Subject\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"6\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control79\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldStatusLabel]\\\" DataTag=\\\"FieldStatusLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"7\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIStatus\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldStatusLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Status\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIStatus\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"8\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control81\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldAuthorLabel]\\\" DataTag=\\\"FieldAuthorLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"9\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIAuthorContactCompanyLabel\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldAuthorLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Author.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"10\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control83\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCSICodeLabel]\\\" DataTag=\\\"FieldCSICodeLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"11\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFICSICode\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldCSICodeLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CSICode\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"12\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control85\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldLocationLabel]\\\" DataTag=\\\"FieldLocationLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"13\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFILocation\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldLocationLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Location\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"14\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control87\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCostEffectLabel]\\\" DataTag=\\\"FieldCostEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"15\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFICostEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldCostEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CostEffect\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFICostEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"16\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control89\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReasonLabel]\\\" DataTag=\\\"FieldReasonLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"17\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIReason\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldReasonLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reason\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIReason\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"18\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control91\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldTimeEffectLabel]\\\" DataTag=\\\"FieldTimeEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"19\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFITimeEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldTimeEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.TimeEffect\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFITimeEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"20\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control93\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReferenceLabel]\\\" DataTag=\\\"FieldReferenceLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"21\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIReference\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldReferenceLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reference\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"22\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control95\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldQuestionLabel]\\\" DataTag=\\\"FieldQuestionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"23\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" />\\r\\n                <Control Name=\\\"RFIQuestion\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldQuestionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Question\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"24\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control97\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldProposedSolutionLabel]\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"25\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" />\\r\\n                <Control Name=\\\"RFIProposedSolution\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.ProposedSolution\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"26\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control99\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldOfficialResponderLabel]\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"27\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIOfficialResponderContactCompanyLabel\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OfficialResponder.ContactCompanyLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"28\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control101\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[Responders]\\\" DataTag=\\\"Responders\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"29\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIResponders\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"Responders\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Responders\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"30\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control103\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDueDateLabel]\\\" DataTag=\\\"FieldDueDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"31\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIDueDate\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldDueDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DueDate\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"32\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control105\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateRespondedLabel]\\\" DataTag=\\\"FieldDateRespondedLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"33\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIDateResponded\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldDateRespondedLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DateResponded\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"34\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control107\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldResponseLabel]\\\" DataTag=\\\"FieldResponseLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"35\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" />\\r\\n                <Control Name=\\\"RFIResponse\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Label\\\" DataTag=\\\"FieldResponseLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Response\\\" IsEditable=\\\"False\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"36\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control109\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" ColumnSpan=\\\"2\\\" Row=\\\"37\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"Control110\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[AnchorSectionReferencesLabel]\\\" DataTag=\\\"AnchorSectionReferencesLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                    <Control Name=\\\"kahua_DocumentReferencesView\\\" Type=\\\"Field\\\" FieldType=\\\"Reference\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OutwardReferences\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" AutoSave=\\\"True\\\" FileType=\\\"Attachment\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n                      <Settings>\\r\\n                        <ReferenceSettings CanToggleThumbnails=\\\"true\\\" CanDownload=\\\"true\\\" CanMarkup=\\\"true\\\" CanOpen=\\\"true\\\" AlwaysIncludeOnSend=\\\"true\\\" AlwaysIncludeMarkupOnSend=\\\"true\\\" AlwaysIncludeInDefaultComposite=\\\"true\\\" AppName=\\\"kahua_AEC_RFI\\\" EntityDefName=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n                      </Settings>\\r\\n                    </Control>\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n            <Control Name=\\\"Control112\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"Control113\\\" Label=\\\"[ActionEditLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Action AutomationId=\\\"Action7\\\" Ref=\\\"kahua_AEC_RFI.RFIEditSelect\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Edit;Region=Detail;EntityId={View.Parameters[EntityId]};EntityPartitionId={View.Parameters[EntityPartitionId]};EntityDefName={View.Parameters[EntityDefName]}\\\" />\\r\\n                </Control>\\r\\n                <Control Name=\\\"Control114\\\" Label=\\\"[ActionSaveLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"1\\\" Margin=\\\"5 0 0 0\\\">\\r\\n                  <Action AutomationId=\\\"Action8\\\" Ref=\\\"kahua_AEC_RFI.RFISaveAction\\\" Scope=\\\"View\\\" />\\r\\n                  <VisibleWhen>\\r\\n                    <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.IsDirty}\\\">\\r\\n                      <Equals>True</Equals>\\r\\n                    </Expression>\\r\\n                    <And ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                      <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n                        <IsNotNull />\\r\\n                      </Expression>\\r\\n                    </And>\\r\\n                  </VisibleWhen>\\r\\n                </Control>\\r\\n                <Control Name=\\\"Control115\\\" Label=\\\"[ActionDeleteLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Margin=\\\"5 0 0 0\\\">\\r\\n                  <Action AutomationId=\\\"Action9\\\" Ref=\\\"kahua_AEC_RFI.RFIDeleteAction\\\" Scope=\\\"View\\\" Parameters=\\\"EntityId={View.Parameters[EntityId]}\\\" />\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n          </Controls>\\r\\n        </Control>\\r\\n      </Controls>\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n    </View>\\r\\n    <View Name=\\\"RFIListView\\\" AllowInputWhenBusy=\\\"Default\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Dynamic\\\" Label=\\\"[RFIViewLabel]\\\" IsWindow=\\\"true\\\" Style=\\\"kahua.kdk.ui.Style\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <LoadActions>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action10\\\" TargetType=\\\"Control\\\" Target=\\\"RFIDataViewControl\\\" Operation=\\\"Get\\\" Scope=\\\"View\\\" />\\r\\n        </LoadAction>\\r\\n      </LoadActions>\\r\\n      <RefreshAction Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls>\\r\\n        <Control Name=\\\"Control116\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <Controls>\\r\\n            <Control Name=\\\"Control117\\\" Type=\\\"MenuBar\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"2 2 2 2\\\">\\r\\n              <Menu Ref=\\\"kahua_AEC_RFI.kahua_AEC_RFIMenu\\\" />\\r\\n            </Control>\\r\\n            <Control Name=\\\"RFIDataViewControl\\\" Type=\\\"DataView\\\" IsTabStop=\\\"False\\\" DataView=\\\"kahua_AEC_RFI.All\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" Margin=\\\"0 0 0 0\\\" SelectAction=\\\"kahua_AEC_RFI.RFIPreviewSelect\\\">\\r\\n              <Menu Ref=\\\"kahua_AEC_RFI.ListContextMenu\\\" EntityActionListName=\\\"RFIDefaultEntityActions\\\" />\\r\\n              <Settings>\\r\\n                <DataViewSettings ShowHeader=\\\"true\\\">\\r\\n                  <HeaderSettings SearchAction=\\\"SearchInGrid\\\" ShowSettingsConfig=\\\"true\\\" AllowPrinting=\\\"Default\\\" AllowCharting=\\\"Default\\\" />\\r\\n                </DataViewSettings>\\r\\n              </Settings>\\r\\n            </Control>\\r\\n          </Controls>\\r\\n        </Control>\\r\\n      </Controls>\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n    </View>\\r\\n    <View AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"RFIListView\\\" AllowInputWhenBusy=\\\"Default\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Dynamic\\\" Label=\\\"[RFIViewLabel]\\\" IsWindow=\\\"true\\\" Style=\\\"kahua.kdk.ui.Style\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <LoadActions>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action11\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIListData\\\" Operation=\\\"Get\\\" Scope=\\\"View\\\" />\\r\\n        </LoadAction>\\r\\n      </LoadActions>\\r\\n      <RefreshAction Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls>\\r\\n        <Control Name=\\\"RFIListGrid\\\" Type=\\\"DataGrid\\\" DataSource=\\\"kahua_AEC_RFI.RFIListData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <SelectAction Ref=\\\"kahua_AEC_RFI.RFIPreviewSelect\\\" TargetType=\\\"View\\\" Target=\\\"PlatformSelect\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Preview;Region=Detail;EntityId={Source.Key.Id};EntityPartitionId={Source.Key.PartitionId};EntityDefName={Source.EntityDef}\\\" />\\r\\n          <Controls>\\r\\n            <Control Name=\\\"Control120\\\" Type=\\\"GridColumn\\\" FieldType=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"RFISubject\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Subject\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" ColumnSpan=\\\"4\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Style>\\r\\n                    <Font IsBold=\\\"true\\\" />\\r\\n                  </Style>\\r\\n                </Control>\\r\\n                <Control Name=\\\"RFINumber\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Number\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <Control Name=\\\"RFIStatus\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.Status\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"100\\\" />\\r\\n                <Control Name=\\\"Control124\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDueLabel]: \\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" Sortable=\\\"True\\\" DisplayHint=\\\"Default\\\" Column=\\\"3\\\" Row=\\\"2\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n                <Control Name=\\\"RFIDueDate\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" DataSourceField=\\\"RFI.DueDate\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"4\\\" Row=\\\"2\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n              </Controls>\\r\\n            </Control>\\r\\n          </Controls>\\r\\n        </Control>\\r\\n      </Controls>\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n      <Menu Ref=\\\"kahua_AEC_RFI.kahua_AEC_RFIMenu\\\" />\\r\\n    </View>\\r\\n    <View Name=\\\"RFIDataListView\\\" AllowInputWhenBusy=\\\"Default\\\" ShowCurrentListItemInTitle=\\\"true\\\" IsCloseable=\\\"true\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Static\\\" Label=\\\"[RFIViewLabel]\\\" IsWindow=\\\"true\\\" Style=\\\"kahua.kdk.ui.Style\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" ModelClass=\\\"feature.report.view.ReportViewModel\\\" ViewClass=\\\"feature.report.view.ReportView\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <LoadActions />\\r\\n      <RefreshAction />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls />\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n    </View>\\r\\n    <View Name=\\\"RFIDataView\\\" AllowInputWhenBusy=\\\"Default\\\" ShowCurrentListInTitle=\\\"true\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Dynamic\\\" Label=\\\"[ViewRFIListViewLabel]\\\" IsWindow=\\\"true\\\" Style=\\\"kahua.kdk.ui.Style\\\" ConfigurationEnabled=\\\"true\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <LoadActions />\\r\\n      <RefreshAction Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls>\\r\\n        <Control Name=\\\"Control126\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <Style Background=\\\"#FFFFFF\\\" />\\r\\n          <Controls>\\r\\n            <Control Name=\\\"Control127\\\" Type=\\\"ActionBar\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Menu Ref=\\\"kahua_AEC_RFI.kahua_AEC_RFIMenu\\\" />\\r\\n            </Control>\\r\\n            <Control Name=\\\"FilterBar\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"FilterBarOptions\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"RFIDataViewSelectorControl\\\" Type=\\\"DataViewSelector\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n                <Control Name=\\\"FilterBarOptions\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"Control132\\\" Type=\\\"Field\\\" FieldType=\\\"Text\\\" Value=\\\" [FieldGroupByLabel]\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Right\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"55\\\">\\r\\n                      <Style>\\r\\n                        <Font Size=\\\"11\\\" />\\r\\n                      </Style>\\r\\n                    </Control>\\r\\n                    <Control Name=\\\"RFIDataViewGroupByControl\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" MaxWidth=\\\"300\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIGroupByLookupList\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                      <SelectAction Ref=\\\"kahua_AEC_RFI.RFIDataViewGroupByAction\\\" Scope=\\\"View\\\" />\\r\\n                    </Control>\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n                <Control Name=\\\"FilterBarSearch\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"3\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"Control135\\\" Type=\\\"Field\\\" FieldType=\\\"Text\\\" Value=\\\"[FieldSearchLabel]\\\" DataTag=\\\"FieldSearchLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Right\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"45\\\">\\r\\n                      <Style>\\r\\n                        <Font Size=\\\"11\\\" />\\r\\n                      </Style>\\r\\n                    </Control>\\r\\n                    <Control Name=\\\"RFIDataViewSearchControl\\\" Type=\\\"Search\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" Behavior=\\\"TextSearchWhileTyping\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Margin=\\\"0 0 0 0\\\" Action=\\\"kahua_AEC_RFI.RFIDataViewSearchAction\\\" />\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n          </Controls>\\r\\n        </Control>\\r\\n        <Control Name=\\\"RFIDataViewControl\\\" Type=\\\"DataView\\\" IsTabStop=\\\"False\\\" DataView=\\\"kahua_AEC_RFI.All\\\" GroupByControl=\\\"kahua_AEC_RFI.RFIDataViewGroupByControl\\\" SearchControl=\\\"kahua_AEC_RFI.RFIDataViewSearchControl\\\" SelectMode=\\\"Multiple\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DoubleClickAction=\\\"kahua_AEC_RFI.RFIOpenEditViewAction\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\" SelectAction=\\\"kahua_AEC_RFI.RFIShowPreviewAction\\\">\\r\\n          <Menu Ref=\\\"kahua_AEC_RFI.ListContextMenu\\\" EntityActionListName=\\\"RFIDefaultEntityActions\\\" />\\r\\n        </Control>\\r\\n        <Control Name=\\\"RFIExportControl\\\" Type=\\\"Export\\\" IsTabStop=\\\"False\\\" ExportDataSource=\\\"kahua_AEC_RFI.RFIListDataExport\\\" FilterControlName=\\\"RFIListSearch\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" IsVisible=\\\"False\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" />\\r\\n        <Control Name=\\\"RFIImportUploader\\\" Type=\\\"Field\\\" FieldType=\\\"File\\\" IsTabStop=\\\"False\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" FileType=\\\"Import\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" IsVisible=\\\"False\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Import\\\" />\\r\\n        </Control>\\r\\n      </Controls>\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n    </View>\\r\\n    <View Name=\\\"RFIEditView\\\" AllowInputWhenBusy=\\\"Default\\\" IsCloseable=\\\"true\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Dynamic\\\" Label=\\\"[ViewRFIEditViewLabel]\\\" IsWindow=\\\"true\\\" Title=\\\"[ViewRFIEditViewTitle]\\\" Style=\\\"kahua.kdk.ui.Style\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\">\\r\\n        <Or>\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Add\\\" />\\r\\n        </Or>\\r\\n      </Permission>\\r\\n      <LoadActions>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action12\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"GetXml\\\" Scope=\\\"View\\\" Parameters=\\\"EntityXml={View.Parameters[TransformedEntity]}\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[TransformedEntity]}\\\">\\r\\n              <IsNotNull />\\r\\n            </Expression>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action13\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"Get\\\" Scope=\\\"View\\\" Parameters=\\\"Id={View.Parameters[EntityId]}\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n              <IsGreaterThan>0</IsGreaterThan>\\r\\n            </Expression>\\r\\n            <And ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n              <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[TransformedEntity]}\\\">\\r\\n                <IsNull />\\r\\n              </Expression>\\r\\n            </And>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action14\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"LoadDefaults\\\" Scope=\\\"View\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n              <IsNull />\\r\\n            </Expression>\\r\\n            <And ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n              <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[TransformedEntity]}\\\">\\r\\n                <IsNull />\\r\\n              </Expression>\\r\\n            </And>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n      </LoadActions>\\r\\n      <RefreshAction />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls>\\r\\n        <Control Name=\\\"Control140\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <Controls>\\r\\n            <Control Name=\\\"Control141\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"Control142\\\" Type=\\\"AnchorPanel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"Control143\\\" Label=\\\"[AnchorSectionDetailsLabelCapitalized]\\\" Type=\\\"AnchorSection\\\" HideHeader=\\\"False\\\" IsCollapsable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[AnchorSectionDetailsLabel]\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                      <Controls>\\r\\n                        <Control Name=\\\"Control144\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                          <Settings>\\r\\n                            <GridSettings>\\r\\n                              <Rows>\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                              </Rows>\\r\\n                              <Columns>\\r\\n                                <Column VisibilityMode=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"175\\\" />\\r\\n                                <Column VisibilityMode=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"*\\\" />\\r\\n                              </Columns>\\r\\n                            </GridSettings>\\r\\n                          </Settings>\\r\\n                          <Controls>\\r\\n                            <Control Name=\\\"Control145\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldNumberLabel]\\\" DataTag=\\\"FieldNumberLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFINumber\\\" Type=\\\"Field\\\" FieldType=\\\"AutoNumber\\\" DataTag=\\\"FieldNumberLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Number\\\" MaxWidth=\\\"200\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control147\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateLabel]\\\" DataTag=\\\"FieldDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIDate\\\" Type=\\\"Field\\\" FieldType=\\\"Date\\\" DataTag=\\\"FieldDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Date\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control149\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldSubjectLabel]\\\" DataTag=\\\"FieldSubjectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFISubject\\\" Type=\\\"Field\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldSubjectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Subject\\\" MaxWidth=\\\"800\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control151\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldStatusLabel]\\\" DataTag=\\\"FieldStatusLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"4\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIStatus\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldStatusLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Status\\\" MaxWidth=\\\"300\\\" MinWidth=\\\"200\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIStatus\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"4\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control153\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldAuthorLabel]\\\" DataTag=\\\"FieldAuthorLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIAuthor\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldAuthorLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Author\\\" MaxWidth=\\\"300\\\" MinWidth=\\\"200\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_PeopleManager.ContactLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                              <Settings>\\r\\n                                <TagBoxSettings DisplayWarningOnNoEmailExists=\\\"Default\\\" LabelAttributeName=\\\"kahua_Contact.ContactCompanyLabel\\\" />\\r\\n                              </Settings>\\r\\n                            </Control>\\r\\n                            <Control Name=\\\"Control155\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCSICodeLabel]\\\" DataTag=\\\"FieldCSICodeLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"6\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFICSICode\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldCSICodeLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CSICode\\\" MaxWidth=\\\"800\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_AEC_CSICode.CSICodeLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Cardinality=\\\"OneToMany\\\" Column=\\\"2\\\" Row=\\\"6\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"50\\\" />\\r\\n                            <Control Name=\\\"Control157\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldLocationLabel]\\\" DataTag=\\\"FieldLocationLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"7\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFILocation\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldLocationLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Location\\\" MaxWidth=\\\"800\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_Location.LocationLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Cardinality=\\\"OneToMany\\\" Column=\\\"2\\\" Row=\\\"7\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"50\\\" />\\r\\n                            <Control Name=\\\"Control159\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCostEffectLabel]\\\" DataTag=\\\"FieldCostEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"8\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFICostEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldCostEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CostEffect\\\" MaxWidth=\\\"300\\\" MinWidth=\\\"200\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFICostEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"8\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control161\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReasonLabel]\\\" DataTag=\\\"FieldReasonLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"9\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIReason\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldReasonLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reason\\\" MaxWidth=\\\"300\\\" MinWidth=\\\"200\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIReason\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"9\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control163\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldTimeEffectLabel]\\\" DataTag=\\\"FieldTimeEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"10\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFITimeEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldTimeEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.TimeEffect\\\" MaxWidth=\\\"300\\\" MinWidth=\\\"200\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFITimeEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"10\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control165\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReferenceLabel]\\\" DataTag=\\\"FieldReferenceLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"11\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIReference\\\" Type=\\\"Field\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldReferenceLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reference\\\" MaxWidth=\\\"400\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"11\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"200\\\" />\\r\\n                            <Control Name=\\\"Control167\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldQuestionLabel]\\\" DataTag=\\\"FieldQuestionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"12\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIQuestion\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldQuestionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Question\\\" MaxWidth=\\\"800\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"12\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"100\\\" />\\r\\n                            <Control Name=\\\"Control169\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldProposedSolutionLabel]\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"13\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIProposedSolution\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.ProposedSolution\\\" MaxWidth=\\\"800\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"13\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"100\\\" />\\r\\n                          </Controls>\\r\\n                        </Control>\\r\\n                      </Controls>\\r\\n                    </Control>\\r\\n                    <Control Name=\\\"Control171\\\" Label=\\\"[AnchorSectionResponseLabelCapitalized]\\\" Type=\\\"AnchorSection\\\" HideHeader=\\\"False\\\" IsCollapsable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[AnchorSectionResponseLabel]\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                      <Controls>\\r\\n                        <Control Name=\\\"Control172\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                          <Settings>\\r\\n                            <GridSettings>\\r\\n                              <Rows>\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                                <Row Height=\\\"Auto\\\" />\\r\\n                              </Rows>\\r\\n                              <Columns>\\r\\n                                <Column VisibilityMode=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"175\\\" />\\r\\n                                <Column VisibilityMode=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"*\\\" />\\r\\n                              </Columns>\\r\\n                            </GridSettings>\\r\\n                          </Settings>\\r\\n                          <Controls>\\r\\n                            <Control Name=\\\"Control173\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldOfficialResponderLabel]\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"1\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIOfficialResponder\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OfficialResponder\\\" MaxWidth=\\\"300\\\" MinWidth=\\\"200\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_PeopleManager.ContactLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"1\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                              <Settings>\\r\\n                                <TagBoxSettings DisplayWarningOnNoEmailExists=\\\"Default\\\" LabelAttributeName=\\\"kahua_Contact.ContactCompanyLabel\\\" />\\r\\n                              </Settings>\\r\\n                            </Control>\\r\\n                            <Control Name=\\\"Control175\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[Responders]\\\" DataTag=\\\"Responders\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIResponders\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"Responders\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Responders\\\" MaxWidth=\\\"800\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_PeopleManager.ContactLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Cardinality=\\\"OneToMany\\\" Column=\\\"2\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"50\\\">\\r\\n                              <Settings>\\r\\n                                <TagBoxSettings DisplayWarningOnNoEmailExists=\\\"Default\\\" LabelAttributeName=\\\"kahua_Contact.ContactCompanyLabel\\\" />\\r\\n                              </Settings>\\r\\n                            </Control>\\r\\n                            <Control Name=\\\"Control177\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDueDateLabel]\\\" DataTag=\\\"FieldDueDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIDueDate\\\" Type=\\\"Field\\\" FieldType=\\\"Date\\\" DataTag=\\\"FieldDueDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DueDate\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control179\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateRespondedLabel]\\\" DataTag=\\\"FieldDateRespondedLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"4\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIDateResponded\\\" Type=\\\"Field\\\" FieldType=\\\"Date\\\" DataTag=\\\"FieldDateRespondedLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DateResponded\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"4\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                            <Control Name=\\\"Control181\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldResponseLabel]\\\" DataTag=\\\"FieldResponseLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" Width=\\\"175\\\" />\\r\\n                            <Control Name=\\\"RFIResponse\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldResponseLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Response\\\" MaxWidth=\\\"800\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Column=\\\"2\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"100\\\" />\\r\\n                          </Controls>\\r\\n                        </Control>\\r\\n                      </Controls>\\r\\n                    </Control>\\r\\n                    <Control Name=\\\"Control183\\\" Label=\\\"[AnchorSectionReferencesLabelCapitalized]\\\" Type=\\\"AnchorSection\\\" IsCollapsable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" HeaderLabel=\\\"[AnchorSectionReferencesLabel]\\\" DisplayHint=\\\"Default\\\" Row=\\\"4\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                      <Controls>\\r\\n                        <Control Name=\\\"kahua_DocumentReferencesView\\\" Type=\\\"Field\\\" FieldType=\\\"Reference\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OutwardReferences\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" AutoSave=\\\"True\\\" FileType=\\\"Attachment\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n                          <Settings>\\r\\n                            <ReferenceSettings CanManageCompositeDocuments=\\\"true\\\" CanToggleThumbnails=\\\"true\\\" CanAdd=\\\"true\\\" CanEdit=\\\"true\\\" CanDownload=\\\"true\\\" CanMarkup=\\\"true\\\" CanOpen=\\\"true\\\" CanRemove=\\\"true\\\" CanUpdate=\\\"true\\\" AlwaysIncludeOnSend=\\\"true\\\" AlwaysIncludeMarkupOnSend=\\\"true\\\" AlwaysIncludeInDefaultComposite=\\\"true\\\" AppName=\\\"kahua_AEC_RFI\\\" EntityDefName=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n                          </Settings>\\r\\n                        </Control>\\r\\n                      </Controls>\\r\\n                    </Control>\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n            <Control Name=\\\"Control185\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" VerticalAlignment=\\\"Bottom\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"MultipleSaveMenuActionFlyout\\\" Type=\\\"ActionFlyout\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n                  <Menu Ref=\\\"kahua_AEC_RFI.MultipleSaveMenu\\\" />\\r\\n                  <EnabledWhen>\\r\\n                    <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.IsDirty}\\\">\\r\\n                      <Equals>True</Equals>\\r\\n                    </Expression>\\r\\n                    <Or ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                      <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n                        <IsNull />\\r\\n                      </Expression>\\r\\n                    </Or>\\r\\n                  </EnabledWhen>\\r\\n                  <Settings>\\r\\n                    <ActionSettings ValidateOnSubmit=\\\"true\\\" />\\r\\n                  </Settings>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n          </Controls>\\r\\n        </Control>\\r\\n      </Controls>\\r\\n      <Titles>\\r\\n        <Title Text=\\\"{DataSources[kahua_AEC_RFI.RFIData].Entities.Current.Entity.Attributes[RFI.Number].Data.Value} {DataSources[kahua_AEC_RFI.RFIData].Entities.Current.Entity.Attributes[RFI.Subject].Data.Value}\\\">\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{DataSources[kahua_AEC_RFI.RFIData].Entities.Current.Entity.Key.Id}\\\">\\r\\n              <IsGreaterThan>0</IsGreaterThan>\\r\\n            </Expression>\\r\\n          </Where>\\r\\n        </Title>\\r\\n      </Titles>\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n    </View>\\r\\n    <View AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"RFIEditView\\\" AllowInputWhenBusy=\\\"Default\\\" Permission=\\\"kahua.kdk.permission.Permission\\\" Type=\\\"Dynamic\\\" Label=\\\"[ViewRFIEditViewLabel]\\\" IsWindow=\\\"true\\\" Style=\\\"kahua.kdk.ui.Style\\\" IsAnchorable=\\\"true\\\" IsCollapsable=\\\"true\\\" IsExpandable=\\\"true\\\" IsMovable=\\\"true\\\" IsResizable=\\\"true\\\" Margin=\\\"0 0 0 0\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\">\\r\\n        <Or>\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Add\\\" />\\r\\n        </Or>\\r\\n      </Permission>\\r\\n      <LoadActions>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action15\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"Get\\\" Scope=\\\"View\\\" Parameters=\\\"Id={View.Parameters[EntityId]}\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n              <IsGreaterThan>0</IsGreaterThan>\\r\\n            </Expression>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n        <LoadAction>\\r\\n          <Action AutomationId=\\\"Action16\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"LoadDefaults\\\" Scope=\\\"View\\\" />\\r\\n          <Where>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n              <IsNull />\\r\\n            </Expression>\\r\\n          </Where>\\r\\n        </LoadAction>\\r\\n      </LoadActions>\\r\\n      <RefreshAction />\\r\\n      <Style Ref=\\\"kahua.kdk.ui.Style\\\" />\\r\\n      <HeaderStyle />\\r\\n      <Controls>\\r\\n        <Control Name=\\\"Control187\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\">\\r\\n          <Controls>\\r\\n            <Control Name=\\\"Control188\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"Vertical\\\" ViewType=\\\"Dynamic\\\" StretchColumnNumber=\\\"2\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Stretch\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"Control189\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldNumberLabel]\\\" DataTag=\\\"FieldNumberLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"1\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFINumber\\\" Type=\\\"Field\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldNumberLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Number\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control191\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateLabel]\\\" DataTag=\\\"FieldDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"3\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIDate\\\" Type=\\\"Field\\\" FieldType=\\\"Date\\\" DataTag=\\\"FieldDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Date\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"4\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control193\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldSubjectLabel]\\\" DataTag=\\\"FieldSubjectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"5\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFISubject\\\" Type=\\\"Field\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldSubjectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Subject\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"6\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control195\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldStatusLabel]\\\" DataTag=\\\"FieldStatusLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"7\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIStatus\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldStatusLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Status\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIStatus\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"8\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control197\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldAuthorLabel]\\\" DataTag=\\\"FieldAuthorLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"9\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIAuthor\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldAuthorLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Author\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_PeopleManager.ContactLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"10\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                  <Settings>\\r\\n                    <TagBoxSettings DisplayWarningOnNoEmailExists=\\\"Default\\\" LabelAttributeName=\\\"kahua_Contact.ContactCompanyLabel\\\" />\\r\\n                  </Settings>\\r\\n                </Control>\\r\\n                <Control Name=\\\"Control199\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCSICodeLabel]\\\" DataTag=\\\"FieldCSICodeLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"11\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFICSICode\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldCSICodeLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CSICode\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_AEC_CSICode.CSICodeLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Cardinality=\\\"OneToMany\\\" Row=\\\"12\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control201\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldLocationLabel]\\\" DataTag=\\\"FieldLocationLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"13\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFILocation\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldLocationLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Location\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_Location.LocationLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Cardinality=\\\"OneToMany\\\" Row=\\\"14\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control203\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldCostEffectLabel]\\\" DataTag=\\\"FieldCostEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"15\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFICostEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldCostEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.CostEffect\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFICostEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"16\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control205\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReasonLabel]\\\" DataTag=\\\"FieldReasonLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"17\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIReason\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldReasonLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reason\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFIReason\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"18\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control207\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldTimeEffectLabel]\\\" DataTag=\\\"FieldTimeEffectLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"19\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFITimeEffect\\\" Type=\\\"Field\\\" FieldType=\\\"Lookup\\\" DataTag=\\\"FieldTimeEffectLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.TimeEffect\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" LookupDataSource=\\\"kahua_AEC_RFI.RFITimeEffect\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"20\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control209\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldReferenceLabel]\\\" DataTag=\\\"FieldReferenceLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"21\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIReference\\\" Type=\\\"Field\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldReferenceLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Reference\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"22\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control211\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldQuestionLabel]\\\" DataTag=\\\"FieldQuestionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"23\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" />\\r\\n                <Control Name=\\\"RFIQuestion\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldQuestionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Question\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"24\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"200\\\" />\\r\\n                <Control Name=\\\"Control213\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldProposedSolutionLabel]\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"25\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" />\\r\\n                <Control Name=\\\"RFIProposedSolution\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldProposedSolutionLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.ProposedSolution\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"26\\\" HorizontalAlignment=\\\"Stretch\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"200\\\" />\\r\\n                <Control Name=\\\"Control215\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldOfficialResponderLabel]\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"27\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIOfficialResponder\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"FieldOfficialResponderLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OfficialResponder\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_PeopleManager.ContactLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"28\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                  <Settings>\\r\\n                    <TagBoxSettings DisplayWarningOnNoEmailExists=\\\"Default\\\" LabelAttributeName=\\\"kahua_Contact.ContactCompanyLabel\\\" />\\r\\n                  </Settings>\\r\\n                </Control>\\r\\n                <Control Name=\\\"Control217\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[Responders]\\\" DataTag=\\\"Responders\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"29\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIResponders\\\" Type=\\\"Field\\\" FieldType=\\\"TagBox\\\" DataTag=\\\"Responders\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Responders\\\" IsEditable=\\\"True\\\" ItemsDataSource=\\\"kahua_PeopleManager.ContactLookupBySearchField\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Cardinality=\\\"OneToMany\\\" Row=\\\"30\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control219\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDueDateLabel]\\\" DataTag=\\\"FieldDueDateLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"31\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIDueDate\\\" Type=\\\"Field\\\" FieldType=\\\"Date\\\" DataTag=\\\"FieldDueDateLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DueDate\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"32\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control221\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldDateRespondedLabel]\\\" DataTag=\\\"FieldDateRespondedLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"33\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Center\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"RFIDateResponded\\\" Type=\\\"Field\\\" FieldType=\\\"Date\\\" DataTag=\\\"FieldDateRespondedLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.DateResponded\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"34\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" />\\r\\n                <Control Name=\\\"Control223\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[FieldResponseLabel]\\\" DataTag=\\\"FieldResponseLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"35\\\" HorizontalAlignment=\\\"Left\\\" VerticalAlignment=\\\"Top\\\" Margin=\\\"5 6 0 0\\\" />\\r\\n                <Control Name=\\\"RFIResponse\\\" Type=\\\"Field\\\" IsMultiLine=\\\"True\\\" FieldType=\\\"Text\\\" DataTag=\\\"FieldResponseLabel\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.Response\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" ColumnSpan=\\\"3\\\" Row=\\\"36\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\" Height=\\\"200\\\" />\\r\\n                <Control Name=\\\"Control225\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" ColumnSpan=\\\"2\\\" Row=\\\"37\\\" HorizontalAlignment=\\\"Stretch\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                  <Settings>\\r\\n                    <GridSettings>\\r\\n                      <Rows>\\r\\n                        <Row Height=\\\"Auto\\\" />\\r\\n                        <Row Height=\\\"Auto\\\" />\\r\\n                      </Rows>\\r\\n                      <Columns>\\r\\n                        <Column VisibilityMode=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"*\\\" />\\r\\n                      </Columns>\\r\\n                    </GridSettings>\\r\\n                  </Settings>\\r\\n                  <Controls>\\r\\n                    <Control Name=\\\"Control226\\\" Type=\\\"Field\\\" FieldType=\\\"Label\\\" Value=\\\"[AnchorSectionReferencesLabel]\\\" DataTag=\\\"AnchorSectionReferencesLabel\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Margin=\\\"0 0 0 0\\\" Width=\\\"200\\\" />\\r\\n                    <Control Name=\\\"kahua_DocumentReferencesView\\\" Type=\\\"Field\\\" FieldType=\\\"Reference\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" DataSourceField=\\\"RFI.OutwardReferences\\\" IsEditable=\\\"True\\\" IsTabStop=\\\"False\\\" AutoSave=\\\"True\\\" FileType=\\\"Attachment\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" Margin=\\\"5 5 5 5\\\">\\r\\n                      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n                      <Settings>\\r\\n                        <ReferenceSettings CanManageCompositeDocuments=\\\"true\\\" CanToggleThumbnails=\\\"true\\\" CanAdd=\\\"true\\\" CanEdit=\\\"true\\\" CanDownload=\\\"true\\\" CanMarkup=\\\"true\\\" CanOpen=\\\"true\\\" CanRemove=\\\"true\\\" CanUpdate=\\\"true\\\" AlwaysIncludeOnSend=\\\"true\\\" AlwaysIncludeMarkupOnSend=\\\"true\\\" AlwaysIncludeInDefaultComposite=\\\"true\\\" AppName=\\\"kahua_AEC_RFI\\\" EntityDefName=\\\"kahua_AEC_RFI.RFI\\\" />\\r\\n                      </Settings>\\r\\n                    </Control>\\r\\n                  </Controls>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n            <Control Name=\\\"Control228\\\" Type=\\\"Grid\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" Row=\\\"2\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"0 0 0 0\\\">\\r\\n              <Controls>\\r\\n                <Control Name=\\\"Control229\\\" Label=\\\"[ActionSaveLabel]\\\" Type=\\\"Action\\\" DataSource=\\\"kahua_AEC_RFI.RFIData\\\" IsTabStop=\\\"False\\\" Scroll=\\\"None\\\" ViewType=\\\"Dynamic\\\" DisplayHint=\\\"Default\\\" HorizontalAlignment=\\\"Left\\\" Margin=\\\"0 0 0 0\\\" Action=\\\"kahua_AEC_RFI.RFISaveAction\\\">\\r\\n                  <EnabledWhen>\\r\\n                    <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.IsDirty}\\\">\\r\\n                      <Equals>True</Equals>\\r\\n                    </Expression>\\r\\n                    <Or ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n                      <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n                        <IsNull />\\r\\n                      </Expression>\\r\\n                    </Or>\\r\\n                  </EnabledWhen>\\r\\n                </Control>\\r\\n              </Controls>\\r\\n            </Control>\\r\\n          </Controls>\\r\\n        </Control>\\r\\n      </Controls>\\r\\n      <DataSource SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\" />\\r\\n    </View>\\r\\n  </Views>\\r\\n  <Menus>\\r\\n    <Menu AppHostType=\\\"Kahua.Desktop\\\" Name=\\\"MainMenu\\\" ParentMenu=\\\"kahua_AEC_DocumentManagement.MainMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"RFI\\\" Label=\\\"[RFIAppNameLabel]\\\" Key=\\\"kahuaAECRFIMenuKey\\\" Image=\\\"/kahua.Apps.Public.SL.Host;component/Images/Modules/icon_Documents.png\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.OpenApp\\\" />\\r\\n          <Action AutomationId=\\\"Action17\\\" TargetType=\\\"Shell\\\" Operation=\\\"OpenApp\\\" Scope=\\\"Shell\\\" Parameters=\\\"AppName=kahua_AEC_RFI\\\" />\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"MainMenu\\\" ParentMenu=\\\"kahua_AEC_DocumentManagement.MainMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"OpenApp\\\" Label=\\\"[RFIAppNameLabel]\\\" Image=\\\"/kahua.Apps.Public.SL.Host;component/Images/Modules/icon_Documents.png\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.OpenApp\\\" />\\r\\n          <Action AutomationId=\\\"Action18\\\" TargetType=\\\"Shell\\\" Operation=\\\"OpenApp\\\" Scope=\\\"Shell\\\" Parameters=\\\"AppName=kahua_AEC_RFI\\\" />\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu AppHostType=\\\"Kahua.Desktop\\\" Name=\\\"MainMenu\\\" ParentMenu=\\\"kahua_AEC_Sub_DocumentManagement.MainMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"RFI\\\" Label=\\\"[RFIAppNameLabel]\\\" Key=\\\"kahuaAECRFIMenuKey\\\" Image=\\\"/kahua.Apps.Public.SL.Host;component/Images/Modules/icon_Documents.png\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.OpenApp\\\" />\\r\\n          <Action AutomationId=\\\"Action17\\\" TargetType=\\\"Shell\\\" Operation=\\\"OpenApp\\\" Scope=\\\"Shell\\\" Parameters=\\\"AppName=kahua_AEC_RFI\\\" />\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"MainMenu\\\" ParentMenu=\\\"kahua_AEC_Sub_DocumentManagement.MainMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"OpenApp\\\" Label=\\\"[RFIAppNameLabel]\\\" Image=\\\"/kahua.Apps.Public.SL.Host;component/Images/Modules/icon_Documents.png\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.OpenApp\\\" />\\r\\n          <Action AutomationId=\\\"Action18\\\" TargetType=\\\"Shell\\\" Operation=\\\"OpenApp\\\" Scope=\\\"Shell\\\" Parameters=\\\"AppName=kahua_AEC_RFI\\\" />\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu Name=\\\"kahua_AEC_RFIMenu\\\" EntityActionListName=\\\"RFIDefaultEntityActions\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Type=\\\"EntityActions\\\" AutomationId=\\\"MenuItem3\\\" />\\r\\n        <MenuItem Name=\\\"CreateRFI\\\" Label=\\\"[ActionCreateNewRFILabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Add\\\" />\\r\\n          <Action AutomationId=\\\"Action19\\\" Ref=\\\"kahua_AEC_RFI.RFICreateAction\\\" />\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"Reports\\\" Label=\\\"[ActionReportLabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n          <Action AutomationId=\\\"Action20\\\" Ref=\\\"kahua_AEC_RFI.RFIReportWorkspaceShowAction\\\" Parameters=\\\"App=kahua_AEC_RFI\\\" />\\r\\n        </MenuItem>\\r\\n        <MenuItem Label=\\\"[MenuGroupMoreLabelCapitalized]\\\" Type=\\\"Group\\\" AutomationId=\\\"MenuItem6\\\">\\r\\n          <MenuItems>\\r\\n            <MenuItem Name=\\\"CreateReport\\\" Label=\\\"[ActionCreateReportLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Configure\\\" />\\r\\n              <Action AutomationId=\\\"Action21\\\" Ref=\\\"kahua_AEC_RFI.RFICreateReportAction\\\" />\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"Export\\\" Label=\\\"[ActionExportLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Export\\\" />\\r\\n              <Action AutomationId=\\\"Action22\\\" TargetType=\\\"View\\\" Target=\\\"kahua_Data.ExportView\\\" Operation=\\\"OpenModal\\\" Scope=\\\"App\\\" Parameters=\\\"ExportDocument=kahua_AEC_RFI.RFIExportDefinition;PartitionId={Partition.PartitionId}\\\" />\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"Import\\\" Label=\\\"[ActionImportLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Import\\\" />\\r\\n              <Action AutomationId=\\\"Action23\\\" Ref=\\\"kahua_AEC_RFI.RFIImportAction\\\" Scope=\\\"App\\\" Parameters=\\\"Files={UploadPrompt};PartitionId={Partition.PartitionId};ExportDocument=kahua_AEC_RFI.RFIExportDefinition;FileFilter=Excel Files (*.xls, *.xlsx)|*.xls\\\\073*.xlsx\\\" />\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"ShareWith\\\" Label=\\\"[ActionShareWithLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Share\\\" />\\r\\n              <Action AutomationId=\\\"Action24\\\" TargetType=\\\"View\\\" Target=\\\"kahua_Sharing.AppSharingView\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"Region=List;PartitionId={PartitionId}\\\" />\\r\\n            </MenuItem>\\r\\n          </MenuItems>\\r\\n        </MenuItem>\\r\\n        <MenuItem Type=\\\"Separator\\\" AutomationId=\\\"MenuItem11\\\">\\r\\n          <MenuItems>\\r\\n            <MenuItem Name=\\\"SendRFI\\\" Label=\\\"[ActionSendLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Send\\\" />\\r\\n              <Action AutomationId=\\\"Action25\\\" Ref=\\\"kahua_AEC_RFI.RFISendAction\\\" Parameters=\\\"AdditionalAfterLoadDefaultsScript=kahua_AEC_RFI.FillInMessageItems;AdditionalEntityId={App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity.Key.Id};Region=Detail;AttachEntitiesId={App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity.Key.Id};AttachEntityPartitionId={App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity.Key.PartitionId};AttachControlName=MessageAttachmentsUploader\\\" />\\r\\n              <VisibleWhen>\\r\\n                <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem}\\\">\\r\\n                  <IsNotNull />\\r\\n                </Expression>\\r\\n              </VisibleWhen>\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"EditRFI\\\" Label=\\\"[ActionEditLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\" />\\r\\n              <Action AutomationId=\\\"Action26\\\" Ref=\\\"kahua_AEC_RFI.RFIViewEditSelect\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Edit;Region=Detail;EntityId={App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity.Key.Id};EntityDefName=kahua_AEC_RFI.RFI\\\" />\\r\\n              <VisibleWhen>\\r\\n                <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem}\\\">\\r\\n                  <IsNotNull />\\r\\n                </Expression>\\r\\n              </VisibleWhen>\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"ViewRFI\\\" Label=\\\"[ActionViewLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n              <Action AutomationId=\\\"Action27\\\" Ref=\\\"kahua_AEC_RFI.RFIViewSelect\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Preview;Region=Detail;EntityId={App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity.Key.Id};EntityDefName=kahua_AEC_RFI.RFI\\\" />\\r\\n              <VisibleWhen>\\r\\n                <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem}\\\">\\r\\n                  <IsNotNull />\\r\\n                </Expression>\\r\\n              </VisibleWhen>\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"EntityFlow\\\" Label=\\\"[ActionEntityFlowLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Process\\\" />\\r\\n              <Action Ref=\\\"kahua_AEC_RFI.RFIEntityFlowAction\\\" Scope=\\\"App\\\" Parameters=\\\"PartitionId={Partition.PartitionId};EntityId={App.Views[kahua_AEC_RFI.RFIListView].AllControls[RFIDataViewControl].SelectedItem.Entity.Key.Id};EntityDef=kahua_AEC_RFI.RFI;SourceApp=kahua_AEC_RFI;SourceLabel={App.Views[kahua_AEC_RFI.RFIListView].AllControls[RFIDataViewControl].SelectedItem.Entity.Attributes[kahua_AEC_RFI*.Subject].Data.Value}\\\" />\\r\\n              <VisibleWhen>\\r\\n                <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{App.SelectedAppList.ListRegionViews[kahua_AEC_RFI.RFIListView].AllControls[RFIDataViewControl].SelectedItem}\\\">\\r\\n                  <IsNotNull />\\r\\n                </Expression>\\r\\n              </VisibleWhen>\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"DeleteRFI\\\" Label=\\\"[ActionDeleteLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Remove\\\" />\\r\\n              <Action AutomationId=\\\"Action28\\\" Ref=\\\"kahua_AEC_RFI.RFIListDeleteAction\\\" Parameters=\\\"EntityId={App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity.Key.Id};EntityDefName=kahua_AEC_RFI.RFI\\\" />\\r\\n              <VisibleWhen>\\r\\n                <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity}\\\">\\r\\n                  <IsNotNull />\\r\\n                </Expression>\\r\\n              </VisibleWhen>\\r\\n            </MenuItem>\\r\\n            <MenuItem Name=\\\"History\\\" Label=\\\"[ViewHistoryLabelCapitalized]\\\">\\r\\n              <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n              <Action AutomationId=\\\"Action29\\\" Ref=\\\"kahua_Core.ViewHistory\\\" Parameters=\\\"Region=Detail;EntityId={Source.Key.Id};EntityTitlePath=Number\\\" />\\r\\n              <VisibleWhen>\\r\\n                <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{App.SelectedAppList.SelectedListRegionView.AllControls[RFIDataViewControl].SelectedItem.Entity}\\\">\\r\\n                  <IsNotNull />\\r\\n                </Expression>\\r\\n              </VisibleWhen>\\r\\n            </MenuItem>\\r\\n          </MenuItems>\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"kahua_AEC_RFIMenu\\\" EntityActionListName=\\\"RFIDefaultEntityActions\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"CreateRFIItem\\\" Label=\\\"[ActionCreateNewRFILabelCapitalized]\\\" Image=\\\"/hostResource;menu_edit\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Add\\\" />\\r\\n          <Action AutomationId=\\\"Action30\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIEditView\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"Region=Detail\\\" />\\r\\n        </MenuItem>\\r\\n        <MenuItem Type=\\\"EntityActions\\\" AutomationId=\\\"MenuItem19\\\" />\\r\\n        <MenuItem Name=\\\"Refresh\\\" Label=\\\"[RefreshLabel]\\\" Image=\\\"/hostResource;menu_refresh\\\">\\r\\n          <Action AutomationId=\\\"Action31\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIListData\\\" Operation=\\\"Refresh\\\" Scope=\\\"App\\\" />\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu Name=\\\"kahua_AEC_RFIItemMenu\\\" EntityActionListName=\\\"RFIDefaultEntityActions\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"SendRFI\\\" Label=\\\"[ActionSendLabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Send\\\" />\\r\\n          <Action AutomationId=\\\"Action32\\\" Ref=\\\"kahua_AEC_RFI.RFISendAction\\\" Parameters=\\\"AdditionalAfterLoadDefaultsScript=kahua_AEC_RFI.FillInMessageItems;AdditionalEntityId={View.Parameters[EntityId]};Region=Detail;AttachEntitiesId={View.Parameters[EntityId]};AttachEntityPartitionId={DataSources[kahua_AEC_RFI.RFIListItemData].Entities.Current.Entity.Key.PartitionId};AttachControlName=MessageAttachmentsUploader\\\" />\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"EditRFI\\\" Label=\\\"[ActionEditLabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\" />\\r\\n          <Action AutomationId=\\\"Action33\\\" Ref=\\\"kahua_AEC_RFI.RFIViewEditSelect\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Edit;Region=Detail;EntityId={View.Parameters[EntityId]};EntityDefName=kahua_AEC_RFI.RFI\\\" />\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"ViewRFI\\\" Label=\\\"[ActionViewLabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n          <Action AutomationId=\\\"Action34\\\" Ref=\\\"kahua_AEC_RFI.RFIViewSelect\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Preview;Region=Detail;EntityId={View.Parameters[EntityId]};EntityDefName=kahua_AEC_RFI.RFI\\\" />\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"EntityFlow\\\" Label=\\\"[ActionEntityFlowLabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Process\\\" />\\r\\n          <Action Ref=\\\"kahua_AEC_RFI.RFIEntityFlowAction\\\" Scope=\\\"App\\\" Parameters=\\\"PartitionId={Partition.PartitionId};EntityId={App.Views[kahua_AEC_RFI.RFIListView].AllControls[RFIDataViewControl].SelectedItem.Entity.Key.Id};EntityDef=kahua_AEC_RFI.RFI;SourceApp=kahua_AEC_RFI;SourceLabel={App.Views[kahua_AEC_RFI.RFIListView].AllControls[RFIDataViewControl].SelectedItem.Entity.Attributes[kahua_AEC_RFI*.Subject].Data.Value}\\\" />\\r\\n          <VisibleWhen>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{App.SelectedAppList.ListRegionViews[kahua_AEC_RFI.RFIListView].AllControls[RFIDataViewControl].SelectedItem}\\\">\\r\\n              <IsNotNull />\\r\\n            </Expression>\\r\\n          </VisibleWhen>\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"DeleteRFI\\\" Label=\\\"[ActionDeleteLabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Remove\\\" />\\r\\n          <Action AutomationId=\\\"Action35\\\" Ref=\\\"kahua_AEC_RFI.RFIListDeleteAction\\\" Parameters=\\\"EntityId={View.Parameters[EntityId]};EntityDefName=kahua_AEC_RFI.RFI\\\" />\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"ViewHistory\\\" Label=\\\"[ViewHistoryLabelCapitalized]\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n          <Action AutomationId=\\\"Action36\\\" Ref=\\\"kahua_Core.ViewHistory\\\" Parameters=\\\"Region=Detail;EntityId={View.Parameters[EntityId]};EntityTitle={View.Title}\\\" />\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu Name=\\\"EntityActionsMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Type=\\\"EntityActions\\\" AutomationId=\\\"MenuItem27\\\" />\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu Name=\\\"ListContextMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Type=\\\"EntityActions\\\" AutomationId=\\\"MenuItem28\\\" />\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"DetailViewMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"AddPhoto\\\" Label=\\\"[AddPhotoLabel]\\\" Image=\\\"/hostResource;menu_camera\\\">\\r\\n          <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\" />\\r\\n          <Action AutomationId=\\\"Action37\\\" TargetType=\\\"Control\\\" Target=\\\"{View.AllControls[RFIFiles]}\\\" Operation=\\\"AddFile\\\" Scope=\\\"View\\\" Parameters=\\\"Format=Camera\\\" />\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n    <Menu Name=\\\"MultipleSaveMenu\\\">\\r\\n      <MenuItems>\\r\\n        <MenuItem Name=\\\"ActionSaveMenuItem\\\" Label=\\\"[ActionSaveLabel]\\\">\\r\\n          <Action AutomationId=\\\"Action38\\\" Ref=\\\"kahua_AEC_RFI.RFISaveAction\\\" Scope=\\\"View\\\">\\r\\n            <Events>\\r\\n              <Event Name=\\\"ActionSaveNewMenuItemSaveNewEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n                <SourceAction />\\r\\n                <TargetActions>\\r\\n                  <TargetAction>\\r\\n                    <Action AutomationId=\\\"Action39\\\" TargetType=\\\"View\\\" Target=\\\"PlatformSelect\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Edit;Region=Detail;EntityId={Source.Result.Key.Id};EntityPartitionId={Source.Result.Key.PartitionId};EntityDefName={Source.Result.EntityDef}\\\" />\\r\\n                  </TargetAction>\\r\\n                  <TargetAction>\\r\\n                    <Action TargetType=\\\"View\\\" Target=\\\"{Source.Target.View}\\\" Operation=\\\"Close\\\" Scope=\\\"App\\\" />\\r\\n                  </TargetAction>\\r\\n                </TargetActions>\\r\\n              </Event>\\r\\n            </Events>\\r\\n          </Action>\\r\\n          <EnabledWhen>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.IsDirty}\\\">\\r\\n              <Equals>True</Equals>\\r\\n            </Expression>\\r\\n            <Or ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n              <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n                <IsNull />\\r\\n              </Expression>\\r\\n            </Or>\\r\\n          </EnabledWhen>\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"ActionSaveNewMenuItem\\\" Label=\\\"[ActionSaveNewLabel]\\\">\\r\\n          <Action AutomationId=\\\"Action40\\\" Ref=\\\"kahua_AEC_RFI.RFISaveAction\\\" Scope=\\\"View\\\">\\r\\n            <Events>\\r\\n              <Event Name=\\\"ActionSaveNewMenuItemSaveNewEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n                <SourceAction />\\r\\n                <TargetActions>\\r\\n                  <TargetAction>\\r\\n                    <Action AutomationId=\\\"Action41\\\" Ref=\\\"kahua_AEC_RFI.RFICreateAction\\\" Scope=\\\"App\\\" />\\r\\n                  </TargetAction>\\r\\n                  <TargetAction>\\r\\n                    <Action AutomationId=\\\"Action42\\\" Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" Scope=\\\"App\\\" />\\r\\n                  </TargetAction>\\r\\n                </TargetActions>\\r\\n              </Event>\\r\\n            </Events>\\r\\n          </Action>\\r\\n          <EnabledWhen>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.IsDirty}\\\">\\r\\n              <Equals>True</Equals>\\r\\n            </Expression>\\r\\n            <Or ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n              <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n                <IsNull />\\r\\n              </Expression>\\r\\n            </Or>\\r\\n          </EnabledWhen>\\r\\n        </MenuItem>\\r\\n        <MenuItem Name=\\\"ActionSaveCloseMenuItem\\\" Label=\\\"[ActionSaveCloseLabel]\\\">\\r\\n          <Action AutomationId=\\\"Action43\\\" Ref=\\\"kahua_AEC_RFI.RFISaveAction\\\" Scope=\\\"View\\\">\\r\\n            <Events>\\r\\n              <Event Name=\\\"ActionSaveCloseMenuItemEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n                <SourceAction />\\r\\n                <TargetActions>\\r\\n                  <TargetAction>\\r\\n                    <Action AutomationId=\\\"Action44\\\" TargetType=\\\"View\\\" Target=\\\"{Source.Target.View}\\\" Operation=\\\"Close\\\" Scope=\\\"App\\\" />\\r\\n                  </TargetAction>\\r\\n                  <TargetAction>\\r\\n                    <Action AutomationId=\\\"Action45\\\" Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" Scope=\\\"App\\\" />\\r\\n                  </TargetAction>\\r\\n                </TargetActions>\\r\\n              </Event>\\r\\n            </Events>\\r\\n          </Action>\\r\\n          <EnabledWhen>\\r\\n            <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.IsDirty}\\\">\\r\\n              <Equals>True</Equals>\\r\\n            </Expression>\\r\\n            <Or ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\">\\r\\n              <Expression ComparisonType=\\\"Default\\\" DateType=\\\"Default\\\" DateOffsetType=\\\"Default\\\" Target=\\\"{View.Parameters[EntityId]}\\\">\\r\\n                <IsNull />\\r\\n              </Expression>\\r\\n            </Or>\\r\\n          </EnabledWhen>\\r\\n        </MenuItem>\\r\\n      </MenuItems>\\r\\n    </Menu>\\r\\n  </Menus>\\r\\n  <Actions>\\r\\n    <Action Name=\\\"RFICloseEditViewAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIEditView\\\" Operation=\\\"Close\\\" />\\r\\n    <Action Name=\\\"RFIClosePreviewAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIPreview\\\" Operation=\\\"Close\\\" />\\r\\n    <Action Name=\\\"RFICreateAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIEditView\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"Region=Detail\\\" />\\r\\n    <Action Name=\\\"RFIDataViewGroupByAction\\\" TargetType=\\\"Control\\\" Target=\\\"kahua_AEC_RFI.RFIDataViewControl\\\" Operation=\\\"ExecuteCommand\\\" Parameters=\\\"Command=GroupBy\\\" />\\r\\n    <Action Name=\\\"RFIDataViewSearchAction\\\" TargetType=\\\"Control\\\" Target=\\\"kahua_AEC_RFI.RFIDataViewControl\\\" Operation=\\\"ExecuteCommand\\\" Parameters=\\\"Command=Search\\\" />\\r\\n    <Action Name=\\\"RFIAddAttachmentsAction\\\" TargetType=\\\"Control\\\" Target=\\\"kahua_AEC_RFI.RFIAttachmentsUploader\\\" Operation=\\\"ExecuteCommand\\\" Parameters=\\\"Command=AddFiles\\\" />\\r\\n    <Action Name=\\\"RFIEditAddAttachmentsAction\\\" TargetType=\\\"Control\\\" Target=\\\"kahua_AEC_RFI.RFIEditAttachmentsUploader\\\" Operation=\\\"ExecuteCommand\\\" Parameters=\\\"Command=AddFiles\\\" />\\r\\n    <Action Name=\\\"RFIEditClearAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIEditView\\\" Operation=\\\"Clear\\\" />\\r\\n    <Action Name=\\\"RFIEntityFlowAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_Data.EntityFlowView\\\" Operation=\\\"OpenModal\\\" Scope=\\\"App\\\" Parameters=\\\"EntityParameterName=TransformedEntity\\\" />\\r\\n    <Action Name=\\\"RFIExportAction\\\" TargetType=\\\"Control\\\" Target=\\\"kahua_AEC_RFI.RFIExportControl\\\" Operation=\\\"ExecuteCommand\\\" Parameters=\\\"Command=ExportFile\\\" />\\r\\n    <Action Name=\\\"RFIImportAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_Data.ImportView\\\" Operation=\\\"OpenModal\\\" Scope=\\\"App\\\" />\\r\\n    <Action Name=\\\"RFIOpenEditViewAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIEditView\\\" Operation=\\\"Open\\\" Parameters=\\\"Region=PreviewRegion;EditExisting=True;EntityDefName=kahua_AEC_RFI.RFI\\\" />\\r\\n    <Action Name=\\\"RFISaveAction\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"Save\\\" Scope=\\\"View\\\" />\\r\\n    <Action Name=\\\"RFIShowPreviewAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIPreview\\\" Operation=\\\"Open\\\" Parameters=\\\"Region=PreviewRegion\\\" />\\r\\n    <Action Name=\\\"RFIShowViewAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_AEC_RFI.RFIDataListView\\\" Operation=\\\"Open\\\" Parameters=\\\"Region=PreviewRegion;ReportName=kahua_AEC_RFI.RFIViewReport\\\" />\\r\\n    <Action Name=\\\"RFIWorkspaceShowAction\\\" TargetType=\\\"Workspace\\\" Target=\\\"kahua_AEC_RFI.RFIWorkspace\\\" Operation=\\\"Show\\\" />\\r\\n    <Action Name=\\\"RFI_Attachments_SaveBatchAction\\\" TargetType=\\\"PlatformCommand\\\" Target=\\\"FileBatch.SaveBatch\\\" Operation=\\\"Execute\\\" Parameters=\\\"EntityId={Id}\\\" />\\r\\n    <Action Name=\\\"RFICreateReportAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_Report.CreateReportView\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.CreateReport;Region=Detail\\\" />\\r\\n    <Action Name=\\\"RFIImportAction_Success\\\" TargetType=\\\"System\\\" />\\r\\n    <Action Name=\\\"RFIPreviewSelect\\\" TargetType=\\\"View\\\" Target=\\\"PlatformSelect\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Preview;Region=Detail;EntityId={Source.Key.Id};EntityPartitionId={Source.Key.PartitionId};EntityDefName={Source.EntityDef};ReportName=kahua_AEC_RFI.RFIViewReport\\\" />\\r\\n    <Action Name=\\\"RFIEditSelect\\\" TargetType=\\\"View\\\" Target=\\\"PlatformSelect\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Edit;Region=Detail;EntityId={Source.Key.Id};EntityPartitionId={Source.Key.PartitionId};EntityDefName={Source.EntityDef}\\\" />\\r\\n    <Action Name=\\\"RFIViewEditSelect\\\" TargetType=\\\"View\\\" Target=\\\"PlatformSelect\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Edit;Region=Detail;EntityId={View.Parameters[EntityId]};EntityPartitionId={View.Parameters[EntityPartitionId]};EntityDefName={View.Parameters[EntityDefName]}\\\" />\\r\\n    <Action Name=\\\"RFIDeleteAction\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIData\\\" Operation=\\\"Delete\\\" Scope=\\\"App\\\" Parameters=\\\"EntityId={Source.Key.Id};PartitionId={Source.Key.PartitionId};EntityDefName={Source.EntityDef}\\\">\\r\\n      <Confirmation Caption=\\\"[DeleteConfirmationCaption]\\\" Detail=\\\"[DeleteConformationDetail]\\\" />\\r\\n    </Action>\\r\\n    <Action Name=\\\"RFIListDeleteAction\\\" TargetType=\\\"DataSource\\\" Target=\\\"kahua_AEC_RFI.RFIListData\\\" Operation=\\\"Delete\\\" Scope=\\\"App\\\" Parameters=\\\"EntityId={Source.Key.Id};PartitionId={Source.Key.PartitionId};EntityDefName={Source.EntityDef}\\\">\\r\\n      <Confirmation Caption=\\\"[DeleteConfirmationCaption]\\\" Detail=\\\"[DeleteConformationDetail]\\\" />\\r\\n    </Action>\\r\\n    <Action Name=\\\"WorkspaceRefreshSelectedNodeItemsCountAction\\\" TargetType=\\\"Workspace\\\" Target=\\\"kahua_AEC_RFI.RFIWorkspace\\\" Operation=\\\"RefreshMenu\\\" Parameters=\\\"Section=PartitionExplorerSelectedNodeItemsCount\\\" />\\r\\n    <Action Name=\\\"RFISendAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_MessageManager.MessageCreateView\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"AdditionalAfterLoadDefaultsScript=kahua_AEC_RFI.FillInMessageItems;AdditionalEntityId={Source.Key.Id};Region=Detail;AttachEntitiesId={Source.Key.Id};AttachEntityPartitionId={Source.Key.PartitionId};AttachControlName=MessageAttachmentsUploader\\\" />\\r\\n    <Action Name=\\\"RFIViewSelect\\\" TargetType=\\\"View\\\" Target=\\\"kahua_Core.QuickViewerView\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Preview;Region=Detail;ReportName=kahua_AEC_RFI.RFIViewReport;EntityId={Source.Key.Id};EntityPartitionId={Source.Key.PartitionId};EntityDefName={Source.EntityDef}\\\" />\\r\\n    <Action Name=\\\"RFIReportWorkspaceShowAction\\\" TargetType=\\\"View\\\" Target=\\\"kahua_Report.ReportListView\\\" Operation=\\\"Open\\\" Scope=\\\"App\\\" Parameters=\\\"Region=List;App=kahua_AEC_RFI\\\" />\\r\\n    <Action Name=\\\"RFIListRefreshDataAction\\\" TargetType=\\\"DataSource\\\" Operation=\\\"Refresh\\\" Scope=\\\"View\\\" ScopeTarget=\\\"{Views[kahua_AEC_RFI.RFIListView]}\\\" />\\r\\n  </Actions>\\r\\n  <Events>\\r\\n    <Event AppHostType=\\\"Kahua.Mobile\\\" Name=\\\"RFISaveEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n      <SourceAction Ref=\\\"kahua_AEC_RFI.RFISaveAction\\\" />\\r\\n      <TargetActions>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action46\\\" TargetType=\\\"View\\\" Target=\\\"{Source.Target.View}\\\" Operation=\\\"Close\\\" Scope=\\\"App\\\" />\\r\\n        </TargetAction>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action47\\\" Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" Scope=\\\"App\\\" />\\r\\n        </TargetAction>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action48\\\" Ref=\\\"kahua_AEC_RFI.RFIPreviewSelect\\\" Scope=\\\"App\\\" Parameters=\\\"EntityView=kahua_AEC_RFI.Preview;Region=Detail;EntityId={Source.Result.Key.Id};EntityPartitionId={Source.Result.Key.PartitionId};EntityDefName={Source.Result.EntityDef}\\\" />\\r\\n        </TargetAction>\\r\\n      </TargetActions>\\r\\n    </Event>\\r\\n    <Event Name=\\\"RFIDeleteEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n      <SourceAction Ref=\\\"kahua_AEC_RFI.RFIDeleteAction\\\" />\\r\\n      <TargetActions>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action49\\\" Ref=\\\"kahua_AEC_RFI.RFICloseEditViewAction\\\" Scope=\\\"App\\\" Parameters=\\\"EntityId={Source.Result.Key.Id}\\\" />\\r\\n        </TargetAction>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action50\\\" Ref=\\\"kahua_AEC_RFI.RFIClosePreviewAction\\\" Scope=\\\"App\\\" Parameters=\\\"EntityId={Source.Result.Key.Id}\\\" />\\r\\n        </TargetAction>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action51\\\" Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" Scope=\\\"App\\\" />\\r\\n        </TargetAction>\\r\\n      </TargetActions>\\r\\n    </Event>\\r\\n    <Event Name=\\\"RFIListDeleteEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n      <SourceAction Ref=\\\"kahua_AEC_RFI.RFIListDeleteAction\\\" />\\r\\n      <TargetActions>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action52\\\" Ref=\\\"kahua_AEC_RFI.RFICloseEditViewAction\\\" Scope=\\\"App\\\" Parameters=\\\"EntityId={Source.Result.Key.Id}\\\" />\\r\\n        </TargetAction>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action53\\\" Ref=\\\"kahua_AEC_RFI.RFIClosePreviewAction\\\" Scope=\\\"App\\\" Parameters=\\\"EntityId={Source.Result.Key.Id}\\\" />\\r\\n        </TargetAction>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action54\\\" Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" Scope=\\\"App\\\" />\\r\\n        </TargetAction>\\r\\n      </TargetActions>\\r\\n    </Event>\\r\\n    <Event Name=\\\"RFIImportEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n      <SourceAction TargetType=\\\"View\\\" Target=\\\"kahua_Data.ImportView\\\" Operation=\\\"Close\\\" Scope=\\\"All\\\" />\\r\\n      <TargetActions>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action55\\\" Ref=\\\"kahua_AEC_RFI.RFIListRefreshDataAction\\\" Scope=\\\"App\\\" />\\r\\n        </TargetAction>\\r\\n      </TargetActions>\\r\\n    </Event>\\r\\n    <Event Name=\\\"RFIReportSaveEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n      <SourceAction Ref=\\\"kahua_Report.ReportSaveAction\\\" />\\r\\n      <TargetActions>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action56\\\" Ref=\\\"kahua_AEC_RFI.RFIReportWorkspaceShowAction\\\" Scope=\\\"Workspace\\\" Parameters=\\\"DefaultFilters=kahua_Report__ReportListData.App:kahua_AEC_RFI\\\" />\\r\\n        </TargetAction>\\r\\n      </TargetActions>\\r\\n    </Event>\\r\\n    <Event Name=\\\"RFISendEvent\\\" ActionExecutionMode=\\\"Default\\\">\\r\\n      <SourceAction Ref=\\\"kahua_MessageManager.MessageSendAction\\\" />\\r\\n      <TargetActions>\\r\\n        <TargetAction>\\r\\n          <Action AutomationId=\\\"Action57\\\" Ref=\\\"kahua_MessageManager.CloseMessageCreateViewAction\\\" Scope=\\\"App\\\" />\\r\\n        </TargetAction>\\r\\n      </TargetActions>\\r\\n    </Event>\\r\\n  </Events>\\r\\n  <EntityViews>\\r\\n    <EntityView Name=\\\"Preview\\\" View=\\\"kahua_AEC_RFI.RFIPreview\\\">\\r\\n      <Where />\\r\\n      <Reports />\\r\\n    </EntityView>\\r\\n    <EntityView Name=\\\"RFIViewReport\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IsDefault=\\\"true\\\" Type=\\\"PortableView\\\">\\r\\n      <Where />\\r\\n      <Reports>\\r\\n        <Report Report=\\\"kahua_AEC_RFI.RFIViewReport\\\">\\r\\n          <Where />\\r\\n        </Report>\\r\\n      </Reports>\\r\\n    </EntityView>\\r\\n    <EntityView Name=\\\"View\\\" View=\\\"kahua_Core.XpsViewerView\\\">\\r\\n      <Where />\\r\\n      <Reports />\\r\\n    </EntityView>\\r\\n    <EntityView Name=\\\"Edit\\\" View=\\\"kahua_AEC_RFI.RFIEditView\\\">\\r\\n      <Where />\\r\\n      <Reports />\\r\\n    </EntityView>\\r\\n    <EntityView Name=\\\"CreateReport\\\" View=\\\"kahua_Report.CreateReportView\\\">\\r\\n      <Where />\\r\\n      <Reports />\\r\\n    </EntityView>\\r\\n  </EntityViews>\\r\\n  <EntityActions>\\r\\n    <EntityAction Name=\\\"Delete\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Remove\\\" />\\r\\n      <MenuItem Label=\\\"[ActionDeleteLabelCapitalized]\\\" AutomationId=\\\"MenuItem33\\\">\\r\\n        <Action AutomationId=\\\"Action58\\\" Ref=\\\"kahua_AEC_RFI.RFIListDeleteAction\\\" Parameters=\\\"EntityId={Source.Key.Id};PartitionId={Source.Key.PartitionId};EntityDefName={Source.EntityDefName}\\\" />\\r\\n      </MenuItem>\\r\\n    </EntityAction>\\r\\n    <EntityAction Name=\\\"Edit\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\" />\\r\\n      <MenuItem Label=\\\"[ActionEditLabelCapitalized]\\\" AutomationId=\\\"MenuItem34\\\">\\r\\n        <Action AutomationId=\\\"Action59\\\" Ref=\\\"kahua_AEC_RFI.RFIEditSelect\\\" />\\r\\n      </MenuItem>\\r\\n    </EntityAction>\\r\\n    <EntityAction Name=\\\"ViewEdit\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.Edit\\\" />\\r\\n      <MenuItem Label=\\\"[ActionEditLabel]\\\" AutomationId=\\\"MenuItem35\\\">\\r\\n        <Action AutomationId=\\\"Action60\\\" Ref=\\\"kahua_AEC_RFI.RFIViewEditSelect\\\" />\\r\\n      </MenuItem>\\r\\n    </EntityAction>\\r\\n    <EntityAction Name=\\\"Preview\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <MenuItem Label=\\\"[ActionPreviewLabelCapitalized]\\\" AutomationId=\\\"MenuItem36\\\">\\r\\n        <Action AutomationId=\\\"Action61\\\" Ref=\\\"kahua_AEC_RFI.RFIPreviewSelect\\\" />\\r\\n      </MenuItem>\\r\\n    </EntityAction>\\r\\n    <EntityAction Name=\\\"View\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <MenuItem Label=\\\"[ActionViewLabelCapitalized]\\\" AutomationId=\\\"MenuItem38\\\">\\r\\n        <Action AutomationId=\\\"Action63\\\" Ref=\\\"kahua_AEC_RFI.RFIViewSelect\\\" />\\r\\n      </MenuItem>\\r\\n    </EntityAction>\\r\\n    <EntityAction Name=\\\"History\\\">\\r\\n      <Permission Type=\\\"Operation\\\" Name=\\\"kahua_AEC_RFI.View\\\" />\\r\\n      <MenuItem Label=\\\"[ViewHistoryLabelCapitalized]\\\" AutomationId=\\\"MenuItem39\\\">\\r\\n        <Action AutomationId=\\\"Action64\\\" Ref=\\\"kahua_Core.ViewHistory\\\" Parameters=\\\"Region=Detail;EntityId={Source.Key.Id};EntityTitlePath=Number\\\" />\\r\\n      </MenuItem>\\r\\n    </EntityAction>\\r\\n  </EntityActions>\\r\\n  <EntityActionLists>\\r\\n    <EntityActionList Name=\\\"RFIDefaultEntityActions\\\">\\r\\n      <EntityActions>\\r\\n        <EntityAction Ref=\\\"Send\\\" />\\r\\n        <EntityAction Ref=\\\"Edit\\\" />\\r\\n        <EntityAction Ref=\\\"View\\\" />\\r\\n        <EntityAction Ref=\\\"Process\\\" />\\r\\n        <EntityAction Ref=\\\"Delete\\\" />\\r\\n        <EntityAction Ref=\\\"History\\\" />\\r\\n      </EntityActions>\\r\\n    </EntityActionList>\\r\\n  </EntityActionLists>\\r\\n  <Scripts>\\r\\n    <Script Name=\\\"App\\\" Debug=\\\"false\\\" PrependContent=\\\"false\\\">\\r\\n      <Body><![CDATA[\\r\\n        \\r\\n        function OnAfterInstall(platform, installedContext) \\r\\n        {\\r\\n          if (installedContext.GetPreviousVersion() > 0 && installedContext.GetPreviousVersion() < 1580 )\\r\\n          {\\r\\n            platform.GetMigration().QueueMigrateEntityAttributeToReferences('kahua_AEC_RFI.RFI', 'Attachments');\\r\\n          }\\r\\n        }\\r\\n        \\r\\n        ]]></Body>\\r\\n    </Script>\\r\\n    <Script Name=\\\"RFIToRFITransform\\\" Debug=\\\"false\\\" PrependContent=\\\"false\\\">\\r\\n      <Body><![CDATA[\\r\\n          function OnAfterTransform(platform, transformContext) {\\r\\n            var criteria = platform.GetDataSource().CreateCriteria();\\r\\n            criteria = platform.GetDataSource().CreateCriteria();\\r\\n            res = platform.GetDataSource().ExecuteLoadDefaults('kahua_AEC_RFI.RFIData', criteria);\\r\\n            \\r\\n            if (res.Entities.Count > 0)\\r\\n            {         \\r\\n              for (var a = 0; a < res.Entities[0].Attributes.Count; a++)\\r\\n              {\\r\\n                  var found = false;\\r\\n                  var attr = res.Entities[0].Attributes[a];\\r\\n                  var target = transformContext.Target;\\r\\n                  for (var t = 0; t < target.Attributes.Count; t++)\\r\\n                  {\\r\\n                    if (target.Attributes[t].Name == attr.Name)\\r\\n                    {\\r\\n                        found = true;\\r\\n                        break;\\r\\n                    }\\r\\n                  }\\r\\n                  if (!found)\\r\\n                  {\\r\\n                      target.AddAttribute(attr);\\r\\n                  }\\r\\n              }\\r\\n            } \\r\\n          }  \\r\\n        ]]></Body>\\r\\n    </Script>\\r\\n    <Script Name=\\\"FillInMessageItems\\\" Debug=\\\"false\\\" PrependContent=\\\"false\\\">\\r\\n      <Body><![CDATA[\\r\\n          function OnAfterLoadDefaults(platform, loadDefaultsContext) \\r\\n          {\\r\\n            if (loadDefaultsContext.Parameters.HasParameter('AdditionalEntityId') && loadDefaultsContext.Parameters.GetParameterValue('AdditionalEntityId') != '') \\r\\n            {                 \\r\\n              var additionalEntityId = loadDefaultsContext.Parameters.GetParameterValue('AdditionalEntityId');\\r\\n              if ((additionalEntityId == null) || (additionalEntityId == ''))\\r\\n              {\\r\\n                return;\\r\\n              }\\r\\n              \\r\\n              var selectBuilder = platform.GetEntity().CreateSelectBuilder();\\r\\n              selectBuilder.Select('Number');\\r\\n              selectBuilder.Select('Subject');\\r\\n              \\r\\n              var entityAsLong = platform.ParseInt(additionalEntityId);\\r\\n              var entity = platform.GetEntity().Get('kahua_AEC_RFI.RFI', entityAsLong, selectBuilder);\\r\\n              if (entity == null)                  \\r\\n              {\\r\\n                return;\\r\\n              }\\r\\n              var number = entity.GetValueText('Number');\\r\\n              var subject = entity.GetValueText('Subject');\\r\\n              \\r\\n              \\r\\n              var messageEntity = loadDefaultsContext.EntitySet.Entities[0];                  \\r\\n              messageEntity.SetValueText('kahua_Message.Subject', number + ' ' + subject);\\r\\n              \\r\\n            }\\r\\n          }        \\r\\n      ]]></Body>\\r\\n    </Script>\\r\\n    <Script Name=\\\"TransformEntityHelper\\\" Debug=\\\"false\\\" PrependContent=\\\"false\\\">\\r\\n      <Body><![CDATA[\\r\\n        function transformAttributeWithLookup(platform, transformContext, attributeName, matchAttributeName, dataSourceName)\\r\\n          {\\r\\n            var targetEntity = transformContext.Target;\\r\\n            \\r\\n            var sourceEntity = transformContext.OriginalSource;\\r\\n            if (sourceEntity == null)\\r\\n            {\\r\\n              sourceEntity = transformContext.Source;\\r\\n            }\\r\\n            \\r\\n            var sourceAttribute = sourceEntity.GetValueEntity(attributeName);\\r\\n            if (sourceAttribute != null && sourceAttribute.Entities.Count > 0)\\r\\n            {\\r\\n              var targetAttribute = targetEntity.GetValueEntity(attributeName);\\r\\n              \\r\\n              criteria = platform.GetDataSource().CreateCriteria();\\r\\n\\t\\t\\t\\t\\t    criteria.PartitionId = targetEntity.Key.PartitionId;\\r\\n              var targetLookup = platform.GetDataSource().Execute(dataSourceName, criteria);\\r\\n              \\r\\n              for (var i = 0; i < sourceAttribute.Entities.Count; i++)\\r\\n              {\\r\\n                var sourceAttributeEntity = sourceAttribute.Entities[i];\\r\\n                \\r\\n                if (sourceAttributeEntity.IsEmpty(matchAttributeName))\\r\\n                {\\r\\n                  sourceAttributeEntity = platform.GetEntity().GetWithAttribute(sourceAttributeEntity.EntityDef, sourceAttributeEntity.Key.Id, matchAttributeName);\\r\\n                }\\r\\n                \\r\\n                if (sourceAttributeEntity == null || sourceAttributeEntity.IsEmpty(matchAttributeName))\\r\\n                {\\r\\n                  continue;\\r\\n                }\\r\\n                \\r\\n                for (var j = 0; j < targetLookup.Entities.Count; j++)\\r\\n                {\\r\\n                  if (targetLookup.Entities[j].GetValueText(matchAttributeName) == sourceAttributeEntity.GetValueText(matchAttributeName))\\r\\n                  {\\r\\n                    targetAttribute.AddEntity(targetLookup.Entities[j]);\\r\\n                    break;\\r\\n                  }\\r\\n                }\\r\\n              }\\r\\n            }\\r\\n          }\\r\\n        ]]></Body>\\r\\n    </Script>\\r\\n  </Scripts>\\r\\n  <EntityFlows>\\r\\n    <EntityFlow Name=\\\"ToIssue\\\" SourceEntityDef=\\\"kahua_AEC_RFI.RFI\\\" TargetEntityDef=\\\"kahua_Issue.Issue\\\" TargetView=\\\"kahua_Issue.IssueEditView\\\">\\r\\n      <EntityFlowReferenceSettings>\\r\\n        <SourceKey />\\r\\n      </EntityFlowReferenceSettings>\\r\\n      <Where />\\r\\n      <Mappings>\\r\\n        <Mapping Name=\\\"Default\\\">\\r\\n          <MappingItems>\\r\\n            <MappingItem Transform=\\\"kahua_AEC_RFI.RFIToIssueTransform\\\" />\\r\\n          </MappingItems>\\r\\n        </Mapping>\\r\\n      </Mappings>\\r\\n      <EntityFlow.New>\\r\\n        <New.Operations>\\r\\n          <Map>\\r\\n            <Map.Mappings>\\r\\n              <Mapping From=\\\"Subject\\\" To=\\\"Subject\\\" />\\r\\n              <Mapping From=\\\"Question\\\" To=\\\"Description\\\" />\\r\\n              <Mapping From=\\\"Location\\\" To=\\\"Location\\\" />\\r\\n              <Mapping From=\\\"Response\\\" To=\\\"Outcome\\\" />\\r\\n              <Mapping From=\\\"OutwardReferences\\\" To=\\\"OutwardReferences\\\" />\\r\\n            </Map.Mappings>\\r\\n          </Map>\\r\\n        </New.Operations>\\r\\n      </EntityFlow.New>\\r\\n    </EntityFlow>\\r\\n    <EntityFlow Name=\\\"ToRFI\\\" SourceEntityDef=\\\"kahua_AEC_RFI.RFI\\\" TargetEntityDef=\\\"kahua_AEC_RFI.RFI\\\" TargetView=\\\"kahua_AEC_RFI.RFIEditView\\\" SourceView=\\\"kahua_AEC_RFI.RFIEditView\\\">\\r\\n      <EntityFlowReferenceSettings>\\r\\n        <SourceKey />\\r\\n      </EntityFlowReferenceSettings>\\r\\n      <Where />\\r\\n      <Mappings>\\r\\n        <Mapping Name=\\\"Default\\\">\\r\\n          <MappingItems>\\r\\n            <MappingItem Transform=\\\"kahua_AEC_RFI.RFIToRFI\\\" />\\r\\n          </MappingItems>\\r\\n        </Mapping>\\r\\n      </Mappings>\\r\\n      <EntityFlow.New>\\r\\n        <New.Operations>\\r\\n          <Map>\\r\\n            <Map.Mappings>\\r\\n              <Mapping From=\\\"Author\\\" To=\\\"Author\\\" />\\r\\n              <Mapping From=\\\"CostEffect\\\" To=\\\"CostEffect\\\" />\\r\\n              <Mapping From=\\\"DateResponded\\\" To=\\\"DateResponded\\\" />\\r\\n              <Mapping From=\\\"DueDate\\\" To=\\\"DueDate\\\" />\\r\\n              <Mapping From=\\\"ProposedSolution\\\" To=\\\"ProposedSolution\\\" />\\r\\n              <Mapping From=\\\"Question\\\" To=\\\"Question\\\" />\\r\\n              <Mapping From=\\\"Reason\\\" To=\\\"Reason\\\" />\\r\\n              <Mapping From=\\\"Reference\\\" To=\\\"Reference\\\" />\\r\\n              <Mapping From=\\\"Response\\\" To=\\\"Response\\\" />\\r\\n              <Mapping From=\\\"Status\\\" To=\\\"Status\\\" />\\r\\n              <Mapping From=\\\"Subject\\\" To=\\\"Subject\\\" />\\r\\n              <Mapping From=\\\"TimeEffect\\\" To=\\\"TimeEffect\\\" />\\r\\n              <Mapping From=\\\"Type\\\" To=\\\"Type\\\" />\\r\\n              <Mapping From=\\\"OutwardReferences\\\" To=\\\"OutwardReferences\\\" />\\r\\n            </Map.Mappings>\\r\\n          </Map>\\r\\n        </New.Operations>\\r\\n      </EntityFlow.New>\\r\\n    </EntityFlow>\\r\\n    <EntityFlow Name=\\\"ToSubGCRFI\\\" SourceEntityDef=\\\"kahua_AEC_RFI.RFI\\\" TargetEntityDef=\\\"kahua_AEC_SubGC_RFI.SubGCRFI\\\" ExistingItemsDataSource=\\\"kahua_AEC_SubGC_RFI.SubGCRFILookupBySearch\\\">\\r\\n      <EntityFlowReferenceSettings>\\r\\n        <SourceKey />\\r\\n      </EntityFlowReferenceSettings>\\r\\n      <Where />\\r\\n      <Mappings>\\r\\n        <Mapping Name=\\\"Default\\\">\\r\\n          <MappingItems>\\r\\n            <MappingItem Transform=\\\"kahua_AEC_RFI.RFIToSubGCRFIAll\\\" />\\r\\n          </MappingItems>\\r\\n        </Mapping>\\r\\n        <Mapping Name=\\\"Default\\\" MappingType=\\\"Existing\\\">\\r\\n          <MappingItems>\\r\\n            <MappingItem Transform=\\\"kahua_AEC_RFI.RFIToSubGCRFI\\\" />\\r\\n          </MappingItems>\\r\\n        </Mapping>\\r\\n      </Mappings>\\r\\n      <EntityFlow.New>\\r\\n        <New.Operations>\\r\\n          <Map>\\r\\n            <Map.Mappings>\\r\\n              <Mapping From=\\\"CostEffect\\\" To=\\\"CostEffect\\\" />\\r\\n              <Mapping From=\\\"Response\\\" To=\\\"Response\\\" />\\r\\n              <Mapping From=\\\"Subject\\\" To=\\\"Subject\\\" />\\r\\n              <Mapping From=\\\"TimeEffect\\\" To=\\\"TimeEffect\\\" />\\r\\n              <Mapping From=\\\"OutwardReferences\\\" To=\\\"OutwardReferences\\\" />\\r\\n            </Map.Mappings>\\r\\n          </Map>\\r\\n        </New.Operations>\\r\\n      </EntityFlow.New>\\r\\n      <EntityFlow.Existing>\\r\\n        <Existing.Operations>\\r\\n          <Map>\\r\\n            <Map.Mappings>\\r\\n              <Mapping From=\\\"Response\\\" To=\\\"Response\\\" />\\r\\n              <Mapping From=\\\"OutwardReferences\\\" To=\\\"OutwardReferences\\\" />\\r\\n            </Map.Mappings>\\r\\n          </Map>\\r\\n        </Existing.Operations>\\r\\n      </EntityFlow.Existing>\\r\\n    </EntityFlow>\\r\\n    <EntityFlow Name=\\\"ToCCD\\\" SourceEntityDef=\\\"kahua_AEC_RFI.RFI\\\" TargetEntityDef=\\\"kahua_ConstructionChangeDirective.CCD\\\" TargetView=\\\"kahua_ConstructionChangeDirective.EditView\\\">\\r\\n      <EntityFlowReferenceSettings>\\r\\n        <SourceKey />\\r\\n      </EntityFlowReferenceSettings>\\r\\n      <Where />\\r\\n      <Mappings />\\r\\n      <EntityFlow.New>\\r\\n        <New.Operations>\\r\\n          <Map>\\r\\n            <Map.Assignments>\\r\\n              <Text To=\\\"WorkflowStatus\\\" Value=\\\"Open\\\" />\\r\\n              <Text To=\\\"CostBooleans\\\" Value=\\\"Lump Sum\\\" />\\r\\n            </Map.Assignments>\\r\\n            <Map.Mappings>\\r\\n              <Mapping From=\\\"Subject\\\" To=\\\"Subject\\\" />\\r\\n              <Mapping From=\\\"Reason\\\" To=\\\"Reason\\\" />\\r\\n              <Mapping From=\\\"Response\\\" To=\\\"ScopeofWork\\\" />\\r\\n              <Mapping From=\\\"CostEffect\\\" To=\\\"CostEffect\\\" />\\r\\n              <Mapping From=\\\"CostAmount\\\" To=\\\"CostTotal\\\" />\\r\\n              <Mapping From=\\\"TimeEffect\\\" To=\\\"TimeEffect\\\" />\\r\\n              <Mapping From=\\\"NumberOfDays\\\" To=\\\"TimeEstimatedays\\\" />\\r\\n              <Mapping From=\\\"CSICode\\\" To=\\\"CSICode\\\" />\\r\\n              <Mapping From=\\\"Location\\\" To=\\\"Location\\\" />\\r\\n              <Mapping From=\\\"OutwardReferences\\\" To=\\\"OutwardReferences\\\" />\\r\\n              <Mapping FromType=\\\"Source\\\" To=\\\"SourceRFI\\\" />\\r\\n            </Map.Mappings>\\r\\n          </Map>\\r\\n          <Items ToPath=\\\"CostItem\\\">\\r\\n            <Items.Operations>\\r\\n              <Map>\\r\\n                <Map.Mappings>\\r\\n                  <Mapping From=\\\"CostAmount\\\" To=\\\"Amount\\\" />\\r\\n                </Map.Mappings>\\r\\n              </Map>\\r\\n            </Items.Operations>\\r\\n          </Items>\\r\\n        </New.Operations>\\r\\n      </EntityFlow.New>\\r\\n    </EntityFlow>\\r\\n  </EntityFlows>\\r\\n  <PortableViews>\\r\\n    <PortableView Name=\\\"kahua_AEC_RFI.RFIViewReport\\\" Label=\\\"[RFIViewReportLabel]\\\" DefaultLogoOption=\\\"DomainLogoOption\\\">\\r\\n      <Key />\\r\\n      <LogoOptions>\\r\\n        <LogoOption Name=\\\"DefaultLogoOption\\\" Label=\\\"[LogoOptionDefaultLabel]\\\" Type=\\\"Default\\\">\\r\\n          <Key />\\r\\n        </LogoOption>\\r\\n        <LogoOption Name=\\\"DomainLogoOption\\\" Label=\\\"[LogoOptionDomainLabel]\\\" Type=\\\"Domain\\\">\\r\\n          <Key />\\r\\n        </LogoOption>\\r\\n        <LogoOption Name=\\\"ProjectLogoOption\\\" Label=\\\"[LogoOptionProjectLabel]\\\" Type=\\\"Project\\\">\\r\\n          <Key />\\r\\n        </LogoOption>\\r\\n        <LogoOption Name=\\\"AuthorLogoOption\\\" AttributePath=\\\"RFI.Author\\\" Label=\\\"[AttributeAuthorLabel]\\\" Type=\\\"Attribute\\\">\\r\\n          <Key />\\r\\n        </LogoOption>\\r\\n        <LogoOption Name=\\\"OfficialResponderLogoOption\\\" AttributePath=\\\"RFI.OfficialResponder\\\" Label=\\\"[AttributeOfficialResponderLabel]\\\" Type=\\\"Attribute\\\">\\r\\n          <Key />\\r\\n        </LogoOption>\\r\\n      </LogoOptions>\\r\\n      <DataSources>\\r\\n        <DataSource Ref=\\\"kahua_AEC_RFI.RFIDataForPortableView\\\" SelectMode=\\\"Data\\\" SaveMode=\\\"IsDirty\\\" ChildPartitionMode=\\\"Default\\\" Access=\\\"Read\\\">\\r\\n          <Parameters>\\r\\n            <Parameter Name=\\\"Id\\\" Path=\\\"RFI.Id\\\" />\\r\\n          </Parameters>\\r\\n        </DataSource>\\r\\n      </DataSources>\\r\\n    </PortableView>\\r\\n  </PortableViews>\\r\\n  <AppLists>\\r\\n    <AppList DisplayOrder=\\\"1\\\" Name=\\\"PreConstruction\\\" Label=\\\"[ListPreConstructionLabel]\\\" Type=\\\"Default\\\" ExchangeListType=\\\"Default\\\">\\r\\n      <Key />\\r\\n      <HostResource>\\r\\n        <Key />\\r\\n      </HostResource>\\r\\n    </AppList>\\r\\n    <AppList DisplayOrder=\\\"2\\\" Name=\\\"Construction\\\" Label=\\\"[ListConstructionLabel]\\\" Type=\\\"Default\\\" ExchangeListType=\\\"Default\\\">\\r\\n      <Key />\\r\\n      <HostResource>\\r\\n        <Key />\\r\\n      </HostResource>\\r\\n    </AppList>\\r\\n  </AppLists>\\r\\n  <DataStore>\\r\\n    <Tables>\\r\\n      <Table EntityDefName=\\\"kahua_AEC_RFI.RFI\\\" IncludeEntityLinkUrl=\\\"true\\\">\\r\\n        <Columns>\\r\\n          <Column AttributeName=\\\"Author\\\" />\\r\\n          <Column AttributeName=\\\"CSICode\\\" />\\r\\n          <Column AttributeName=\\\"CostEffect\\\" />\\r\\n          <Column AttributeName=\\\"CostAmount\\\" />\\r\\n          <Column AttributeName=\\\"Date\\\" />\\r\\n          <Column AttributeName=\\\"DateResponded\\\" />\\r\\n          <Column AttributeName=\\\"DueDate\\\" />\\r\\n          <Column AttributeName=\\\"DateSent\\\" />\\r\\n          <Column AttributeName=\\\"Location\\\" />\\r\\n          <Column AttributeName=\\\"Number\\\" />\\r\\n          <Column AttributeName=\\\"OfficialResponder\\\" />\\r\\n          <Column AttributeName=\\\"Responders\\\" />\\r\\n          <Column AttributeName=\\\"ProposedSolution\\\" />\\r\\n          <Column AttributeName=\\\"Question\\\" />\\r\\n          <Column AttributeName=\\\"Reason\\\" />\\r\\n          <Column AttributeName=\\\"Reference\\\" />\\r\\n          <Column AttributeName=\\\"Response\\\" />\\r\\n          <Column AttributeName=\\\"Status\\\" />\\r\\n          <Column AttributeName=\\\"Subject\\\" />\\r\\n          <Column AttributeName=\\\"TimeEffect\\\" />\\r\\n          <Column AttributeName=\\\"NumberOfDays\\\" />\\r\\n          <Column AttributeName=\\\"Attachments\\\" />\\r\\n          <Column AttributeName=\\\"Discipline\\\" />\\r\\n          <Column AttributeName=\\\"WorkSuspended\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Column AttributeName=\\\"Type\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Column AttributeName=\\\"RFIReferenceNumber1\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Column AttributeName=\\\"RFIReferenceNumber2\\\" DataType=\\\"AutoNumber\\\" />\\r\\n          <Column AttributeName=\\\"UniversalLookup1\\\" />\\r\\n          <Column AttributeName=\\\"UniversalLookup2\\\" />\\r\\n          <Column AttributeName=\\\"UniversalLookup3\\\" />\\r\\n          <Column AttributeName=\\\"UniversalLookup4\\\" />\\r\\n          <Column AttributeName=\\\"UniversalLookup5\\\" />\\r\\n        </Columns>\\r\\n      </Table>\\r\\n    </Tables>\\r\\n  </DataStore>\\r\\n  <InflowDefs>\\r\\n    <InflowDef Name=\\\"RFIIn\\\" Description=\\\"Create and update RFIs.\\\" TransactionScope=\\\"Default\\\">\\r\\n      <Operations>\\r\\n        <Transform Description=\\\"RFI data\\\" Source=\\\"RFIItems\\\" WorkingSet=\\\"RFIItems\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" MatchExistingBy=\\\"Attribute\\\" ExistingSourceAttribute=\\\"Number\\\" ExistingTargetAttribute=\\\"Number\\\" TransactionScope=\\\"Default\\\">\\r\\n          <TargetAttributes>\\r\\n            <TargetAttribute Name=\\\"Author\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Author\\\" />\\r\\n            <TargetAttribute Name=\\\"CSICode\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"CSICode\\\" />\\r\\n            <TargetAttribute Name=\\\"CostEffect\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"CostEffect\\\" />\\r\\n            <TargetAttribute Name=\\\"Date\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Date\\\" />\\r\\n            <TargetAttribute Name=\\\"DateResponded\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"DateResponded\\\" />\\r\\n            <TargetAttribute Name=\\\"DueDate\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"DueDate\\\" />\\r\\n            <TargetAttribute Name=\\\"Location\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Location\\\" />\\r\\n            <TargetAttribute Name=\\\"Number\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Number\\\" />\\r\\n            <TargetAttribute Name=\\\"OfficialResponder\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"OfficialResponder\\\" />\\r\\n            <TargetAttribute Name=\\\"Responders\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Responders\\\" />\\r\\n            <TargetAttribute Name=\\\"ProposedSolution\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"ProposedSolution\\\" />\\r\\n            <TargetAttribute Name=\\\"Question\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Question\\\" />\\r\\n            <TargetAttribute Name=\\\"Reason\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Reason\\\" />\\r\\n            <TargetAttribute Name=\\\"Reference\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Reference\\\" />\\r\\n            <TargetAttribute Name=\\\"Response\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Response\\\" />\\r\\n            <TargetAttribute Name=\\\"Status\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Status\\\" />\\r\\n            <TargetAttribute Name=\\\"Subject\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Subject\\\" />\\r\\n            <TargetAttribute Name=\\\"TimeEffect\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"TimeEffect\\\" />\\r\\n            <TargetAttribute Name=\\\"Discipline\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"Discipline\\\" />\\r\\n            <TargetAttribute Name=\\\"OutwardReferences\\\" DataType=\\\"Default\\\" SourceAttribute=\\\"OutwardReferences\\\" ResolvementType=\\\"References\\\" />\\r\\n          </TargetAttributes>\\r\\n        </Transform>\\r\\n        <Save WorkingSet=\\\"RFIItems\\\" Description=\\\"Defines save operation for inflow\\\" TransactionScope=\\\"Default\\\" />\\r\\n      </Operations>\\r\\n    </InflowDef>\\r\\n  </InflowDefs>\\r\\n  <OutflowDefs>\\r\\n    <OutflowDef Name=\\\"RFIOut\\\" Description=\\\"Export RFI data\\\">\\r\\n      <Operations>\\r\\n        <Transform Target=\\\"RFIItems\\\" Description=\\\"RFI data\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" EntitySource=\\\"Default\\\" IncludeReferences=\\\"True\\\" TransformType=\\\"Default\\\">\\r\\n          <Attributes>\\r\\n            <Attribute Name=\\\"Author\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"CSICode\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"CostEffect\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Date\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"DateResponded\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"DueDate\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Location\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Number\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"OfficialResponder\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Responders\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"ProposedSolution\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Question\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Reason\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Reference\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Response\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Status\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Subject\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"TimeEffect\\\" DataType=\\\"Default\\\" />\\r\\n            <Attribute Name=\\\"Discipline\\\" DataType=\\\"Default\\\" />\\r\\n          </Attributes>\\r\\n        </Transform>\\r\\n      </Operations>\\r\\n    </OutflowDef>\\r\\n  </OutflowDefs>\\r\\n  <Exchange>\\r\\n    <ShareSettings OnEndDataSource=\\\"kahua_AEC_RFI.RFIExchangeCopyData\\\" OnEndDataView=\\\"kahua_AEC_RFI.Default\\\" />\\r\\n    <DataViewDefs />\\r\\n    <DataViews />\\r\\n  </Exchange>\\r\\n  <App.Media />\\r\\n  <App.Feeds>\\r\\n    <Feeds.Filters>\\r\\n      <Filter By=\\\"CreatedBy\\\" Name=\\\"CreatedBy\\\" Label=\\\"[AttributeCreatedByLabel]\\\" />\\r\\n      <Filter By=\\\"Status\\\" Name=\\\"Status\\\" Label=\\\"[AttributeStatusLabel]\\\" />\\r\\n      <Filter By=\\\"CSICode\\\" Name=\\\"CSICode\\\" Label=\\\"[AttributeCSICodeLabel]\\\" />\\r\\n      <Filter By=\\\"Location\\\" Name=\\\"Location\\\" Label=\\\"[AttributeLocationLabel]\\\" />\\r\\n      <Filter By=\\\"OfficialResponder.Company\\\" Name=\\\"Company\\\" Label=\\\"[AttributeCompanyLabel]\\\" />\\r\\n      <Filter By=\\\"DomainPartition.Name\\\" Name=\\\"Project\\\" Label=\\\"[LogoOptionProjectLabel]\\\" />\\r\\n    </Feeds.Filters>\\r\\n    <Group Label=\\\"[FeedRFIsByStatusLabel]\\\" Name=\\\"RFIsByStatus\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Group.Expressions>\\r\\n        <Count To=\\\"Count\\\" />\\r\\n      </Group.Expressions>\\r\\n      <Group.Groupings>\\r\\n        <Grouping Path=\\\"Status\\\" />\\r\\n      </Group.Groupings>\\r\\n    </Group>\\r\\n    <Group Label=\\\"[FeedRFIsByReasonLabel]\\\" Name=\\\"RFIsByReason\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Group.Expressions>\\r\\n        <Count To=\\\"Count\\\" />\\r\\n      </Group.Expressions>\\r\\n      <Group.Groupings>\\r\\n        <Grouping Path=\\\"Reason\\\" />\\r\\n      </Group.Groupings>\\r\\n    </Group>\\r\\n    <Group Label=\\\"[FeedRFIsByCostEffectLabel]\\\" Name=\\\"RFIsByCostEffect\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Group.Expressions>\\r\\n        <Count To=\\\"Count\\\" />\\r\\n      </Group.Expressions>\\r\\n      <Group.Groupings>\\r\\n        <Grouping Path=\\\"CostEffect\\\" />\\r\\n      </Group.Groupings>\\r\\n    </Group>\\r\\n    <Group Label=\\\"[FeedRFIsByTimeEffectLabel]\\\" Name=\\\"RFIsByTimeEffect\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Group.Expressions>\\r\\n        <Count To=\\\"Count\\\" />\\r\\n      </Group.Expressions>\\r\\n      <Group.Groupings>\\r\\n        <Grouping Path=\\\"TimeEffect\\\" />\\r\\n      </Group.Groupings>\\r\\n    </Group>\\r\\n    <Group Label=\\\"[FeedOverdueRFIsByOfficial]\\\" Name=\\\"OverdueRFIsByOfficial\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Group.Condition>\\r\\n        <AllOf>\\r\\n          <Data Path=\\\"DueDate\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"Response\\\" Type=\\\"HasNoValue\\\" />\\r\\n          <Data Path=\\\"DueDate\\\" Type=\\\"LessThan\\\" Current.Date=\\\"True\\\" />\\r\\n        </AllOf>\\r\\n      </Group.Condition>\\r\\n      <Group.Expressions>\\r\\n        <Count To=\\\"Count\\\" />\\r\\n      </Group.Expressions>\\r\\n      <Group.Groupings>\\r\\n        <Grouping Path=\\\"OfficialResponder.Company\\\" />\\r\\n      </Group.Groupings>\\r\\n    </Group>\\r\\n    <Group Label=\\\"[FeedUnrespondedRFIsByOfficial]\\\" Name=\\\"UnrespondedRFIsByOfficial\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Group.Condition>\\r\\n        <AllOf>\\r\\n          <Data Path=\\\"Response\\\" Type=\\\"HasNoValue\\\" />\\r\\n        </AllOf>\\r\\n      </Group.Condition>\\r\\n      <Group.Expressions>\\r\\n        <Count To=\\\"Count\\\" />\\r\\n      </Group.Expressions>\\r\\n      <Group.Groupings>\\r\\n        <Grouping Path=\\\"OfficialResponder.Company\\\" />\\r\\n      </Group.Groupings>\\r\\n    </Group>\\r\\n    <Aggregate Label=\\\"[FeedUnrespondedRFIsCountLabel]\\\" Name=\\\"UnrespondedRFIsCount\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <Data Path=\\\"Response\\\" Type=\\\"HasNoValue\\\">\\r\\n          <Data />\\r\\n        </Data>\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Aggregate Label=\\\"[FeedOverdueRFIsCountLabel]\\\" Name=\\\"OverdueRFIsCount\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <AllOf>\\r\\n          <Data Path=\\\"DueDate\\\" Type=\\\"HasValue\\\" />\\r\\n          <AllOf>\\r\\n            <Data Path=\\\"Response\\\" Type=\\\"HasNoValue\\\" />\\r\\n            <Data Path=\\\"DueDate\\\" Type=\\\"LessThan\\\" Current.Date=\\\"True\\\" />\\r\\n          </AllOf>\\r\\n        </AllOf>\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Aggregate Name=\\\"RFIsModifiedPast24Hours\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Label=\\\"[FeedRFIsModifiedPast24HoursCountLabel]\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <Data Type=\\\"GreaterThan\\\" Path=\\\"ModifiedDateTime\\\" Current.Date=\\\"True\\\" DateOffset.Hours=\\\"-24\\\" />\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Aggregate Name=\\\"RFIsCreated30Days\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Label=\\\"[FeedRFIsCreated30DaysLabel]\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <Data Type=\\\"GreaterThan\\\" Path=\\\"CreatedDateTime\\\" Current.Date=\\\"True\\\" DateOffset.Days=\\\"-30\\\" />\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Aggregate Label=\\\"[FeedRFIsResponseDueNextDayLabel]\\\" Name=\\\"RFIsResponseDueNextDayCount\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <AllOf>\\r\\n          <Data Path=\\\"Response\\\" Type=\\\"HasNoValue\\\" />\\r\\n          <Data Type=\\\"GreaterThanOrEqualTo\\\" Path=\\\"DueDate\\\" Current.Date=\\\"True\\\" />\\r\\n          <Data Type=\\\"LessThanOrEqualTo\\\" Path=\\\"DueDate\\\" Current.Date=\\\"True\\\" DateOffset.Days=\\\"1\\\" />\\r\\n        </AllOf>\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Aggregate Label=\\\"[FeedRFIsResponded30DaysLabel]\\\" Name=\\\"RFIsResponded30DaysCount\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <AllOf>\\r\\n          <Data Path=\\\"Response\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"DateResponded\\\" Type=\\\"GreaterThanOrEqualTo\\\" Current.Date=\\\"True\\\" DateOffset.Days=\\\"-30\\\" />\\r\\n        </AllOf>\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Aggregate Label=\\\"[FeedRFIsLateResponseCountLabel]\\\" Name=\\\"RFIsLateResponseCount\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\" ByDatePart.Interval=\\\"Day\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <AllOf>\\r\\n          <Data Path=\\\"Response\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"DueDate\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"DateResponded\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"DateResponded\\\" Type=\\\"GreaterThan\\\" ValuePath=\\\"DueDate\\\" />\\r\\n        </AllOf>\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Aggregate Label=\\\"[FeedRFIsOnTimeResponseCountLabel]\\\" Name=\\\"RFIsOnTimeResponseCount\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\" ByDatePart.Interval=\\\"Day\\\">\\r\\n      <Aggregate.Expressions>\\r\\n        <Count />\\r\\n      </Aggregate.Expressions>\\r\\n      <Aggregate.Condition>\\r\\n        <AllOf>\\r\\n          <Data Path=\\\"Response\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"DueDate\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"DateResponded\\\" Type=\\\"HasValue\\\" />\\r\\n          <Data Path=\\\"DateResponded\\\" Type=\\\"LessThanOrEqualTo\\\" ValuePath=\\\"DueDate\\\" />\\r\\n        </AllOf>\\r\\n      </Aggregate.Condition>\\r\\n    </Aggregate>\\r\\n    <Group Name=\\\"RFIsCreatedByMonth\\\" EntityDef=\\\"kahua_AEC_RFI.RFI\\\" IncludePartitionChildren=\\\"True\\\" IncludeProcessors=\\\"True\\\" Label=\\\"[FeedRFIsCreatedByMonthLabel]\\\">\\r\\n      <Group.Expressions>\\r\\n        <Count To=\\\"Count\\\" />\\r\\n      </Group.Expressions>\\r\\n      <Group.Groupings>\\r\\n        <Grouping Path=\\\"CreatedDateTime\\\" DatePart.Interval=\\\"Month\\\" />\\r\\n      </Group.Groupings>\\r\\n    </Group>\\r\\n  </App.Feeds>\\r\\n  <App.Snapshot Enabled=\\\"True\\\">\\r\\n    <Entity EntityDef=\\\"kahua_AEC_RFI.RFI\\\" Subdirectory=\\\"{AppNameLabel} {Number} {Subject}\\\" />\\r\\n  </App.Snapshot>\\r\\n  <App.ShareInstalls>\\r\\n    <ShareInstall Package=\\\"KahuaStandard\\\" AppName=\\\"kahua_AEC_RFI\\\" Product=\\\"kahua_AEC_DocumentManagement\\\" />\\r\\n    <ShareInstall Package=\\\"KahuaSubcontractor\\\" AppName=\\\"kahua_AEC_RFI\\\" Product=\\\"kahua_AEC_Sub_DocumentManagement\\\" />\\r\\n  </App.ShareInstalls>\\r\\n  <Dynamic />\\r\\n</App>\""
                }
              ]
            },
            {
              "name": "5.2.3: Get Enabled Apps",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/info",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    "info"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "Gets a list of apps for a given `:projectId`.\n\nThe response body is a JSON list of objects, each with the following fields:\n\n- `name`: The name of the app\n    \n- `label`: The localized name of the app\n    \n- `enabled`: Whether or not the app is enabled"
              },
              "response": [
                {
                  "name": "Get Enabled Apps",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/info",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        "info"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "5327"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 14:43:25 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"name\": \"AssertTest\",\n        \"label\": \"AssertTest\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"BaseApp\",\n        \"label\": \"BaseApp\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"DM_AEC_Milestones\",\n        \"label\": \"Milestones\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_Communications\",\n        \"label\": \"Communications\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_CSICode\",\n        \"label\": \"CSI Codes\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_DailyReport\",\n        \"label\": \"Daily Reports\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_DesignReview\",\n        \"label\": \"Design Review\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_DesignReviewComments\",\n        \"label\": \"Design Review Comments\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_DesignReviewSets\",\n        \"label\": \"Design Review Sets\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_FieldObservation\",\n        \"label\": \"Field Observations\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_Funding\",\n        \"label\": \"Kahua AEC Funding\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_Invoice\",\n        \"label\": \"Invoices\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_PackagedSubmittals\",\n        \"label\": \"Packaged Submittals\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_PunchList\",\n        \"label\": \"Punch List Items\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_PunchList_ProjectLibrary\",\n        \"label\": \"Punch List Project Library\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_Purchasing\",\n        \"label\": \"Kahua AEC Purchasing and Inventory Management\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_RFI\",\n        \"label\": \"RFIs\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_Sub_RFI\",\n        \"label\": \"Sub RFIs (Out)\",\n        \"enabled\": false\n    },\n    {\n        \"name\": \"kahua_AEC_SubGC_RFI\",\n        \"label\": \"Sub RFIs (In)\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_Submittal\",\n        \"label\": \"Submittals\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_SubmittalItem\",\n        \"label\": \"Submittal Items\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_AEC_SubmittalPackage\",\n        \"label\": \"Submittal Packages\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_BudgetAdjustment\",\n        \"label\": \"Funding Budget Adjustments\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_CalculationTemplate\",\n        \"label\": \"Calculation Templates\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Calendar\",\n        \"label\": \"Calendar\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_CapitalPlanManager\",\n        \"label\": \"Capital Plan Manager\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_CapitalPlanning\",\n        \"label\": \"Capital Planning\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Catalog\",\n        \"label\": \"Catalogs\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ClientContract\",\n        \"label\": \"Funding Contracts\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ClientContractChangeOrder\",\n        \"label\": \"Funding Change Orders\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ClientContractInvoice\",\n        \"label\": \"Funding Pay Apps\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_CompanyDomain\",\n        \"label\": \"Kahua Company Domain\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ComplianceTracking\",\n        \"label\": \"Compliance Tracking\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Configuration\",\n        \"label\": \"Configuration\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Contract\",\n        \"label\": \"Expense Contracts\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ContractChangeOrder\",\n        \"label\": \"Expense Change Orders\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ContractChangeRequest\",\n        \"label\": \"Expense Change Requests\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ContractInvoice\",\n        \"label\": \"Pay Requests\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Cost\",\n        \"label\": \"Kahua AEC Cost\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_CostItemIndex\",\n        \"label\": \"Cost Item Index\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Dashboard\",\n        \"label\": \"Dashboard\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_DevLog\",\n        \"label\": \"Dev Logs\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_DocumentTypes\",\n        \"label\": \"Document Types\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_FileManager\",\n        \"label\": \"File Manager\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_FinancialPeriod\",\n        \"label\": \"Financial Periods\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ForecastCurve\",\n        \"label\": \"Forecast Curves\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_FundingBudget\",\n        \"label\": \"Funding Budget\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_FundingChangeRequest\",\n        \"label\": \"Funding Change Requests\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_GroupManagement\",\n        \"label\": \"Groups\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Issue\",\n        \"label\": \"Issues\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Location\",\n        \"label\": \"Locations\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Media\",\n        \"label\": \"Media Base\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_MediaManager\",\n        \"label\": \"Media Manager\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Meeting\",\n        \"label\": \"Meetings\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_PlanningAdjustment\",\n        \"label\": \"Planning Budget Adjustments\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_PlanningBudget\",\n        \"label\": \"Planning Budget\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_Project\",\n        \"label\": \"Projects\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ProjectDirectory\",\n        \"label\": \"Project Directory\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ProjectDirectory_Companies\",\n        \"label\": \"Project Directory Companies\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ProjectDirectory_Contacts\",\n        \"label\": \"Project Directory People\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ProjectSettings\",\n        \"label\": \"Project Settings\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ProjectSharing\",\n        \"label\": \"Project Shares\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ProjectTaskManager\",\n        \"label\": \"Project Tasks\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_PurchaseOrder\",\n        \"label\": \"Purchase Orders\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_QRCodes\",\n        \"label\": \"QR Codes\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_QuoteRequest\",\n        \"label\": \"Requests For Quotes\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ReportManager\",\n        \"label\": \"Report Manager\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_ShareManager\",\n        \"label\": \"Share Manager\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_SupplementalCode\",\n        \"label\": \"Supplemental Codes\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_UniversalLookup\",\n        \"label\": \"Universal Lookup\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_WorkBreakdown\",\n        \"label\": \"Work Breakdown\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"kahua_WorkPackage\",\n        \"label\": \"Work Packages\",\n        \"enabled\": true\n    },\n    {\n        \"name\": \"SelfRef\",\n        \"label\": \"SelfRef\",\n        \"enabled\": true\n    }\n]"
                }
              ]
            },
            {
              "name": "5.2.4: Get Enabled Workflows (HubDefs)",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/hubdefs",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "hubdefs"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_FileManager"
                    }
                  ]
                },
                "description": "This request returns all enabled workflows (Hub Definitions) for the app `:appName` based on the configuration of the project `:projectId`. These settings are available in the Configuration app under the \"Workflow\" tab.\n\nThe response body is a JSON list of objects, each with following fields:\n\n- `entityDef`: The entity definition for the HubDef\n    \n- `name`: The name of the HubDef, as it appears in the app definition\n    \n- `label`: The localized name of the HubDef\n    \n- `isFolderContainer`: Whether or not the `Container.Type` attribute of the HubDef in the app definition is set to `\"Folder\"`"
              },
              "response": [
                {
                  "name": "Get File Manager HubDefs",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/hubdefs",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "hubdefs"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_FileManager"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "408"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "16"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 15:07:24 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"infos\": [\n        {\n            \"entityDef\": \"kahua_FileManager.File\",\n            \"name\": \"kahua_FileManager.FilesNoWorkflow\",\n            \"label\": \"Files\",\n            \"isFolderContainer\": true\n        },\n        {\n            \"entityDef\": \"kahua_FileManager.Media\",\n            \"name\": \"kahua_FileManager.MediaNoWorkflow\",\n            \"label\": \"Media\",\n            \"isFolderContainer\": true\n        },\n        {\n            \"entityDef\": \"kahua_FileManager.DrawingLogRevision\",\n            \"name\": \"kahua_FileManager.DrawingsDefaultWorkflow\",\n            \"label\": \"Controlled\",\n            \"isFolderContainer\": true\n        }\n    ]\n}"
                }
              ]
            },
            {
              "name": "5.2.5: Get Selected Workflow (HubDef)",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/hubdef",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "hubdef"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_FileManager"
                    }
                  ]
                },
                "description": "This request is similar to 5.2.4: Get Enabled Workflows (HubDefs), but instead returns the HubDef selected in the dropdown in the same tab in the Configuration App. The response body is the same as one element of the response of 5.2.4."
              },
              "response": [
                {
                  "name": "Get Workflow",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/hubdef",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "hubdef"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_FileManager"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "122"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Fri, 25 Jul 2025 19:02:19 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"entityDef\": \"kahua_FileManager.File\",\n    \"name\": \"kahua_FileManager.FilesNoWorkflow\",\n    \"label\": \"Files\",\n    \"isFolderContainer\": true\n}"
                }
              ]
            },
            {
              "name": "5.2.6: (QRY) Get Auto Number Configs",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // To query for a specific app, use:\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"EntityDefName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"kahua_AEC_DailyReport.\"\r\n                },\r\n                // To query for a specific entity type, use:\r\n                /*\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"EntityDefName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                },\r\n                */\r\n                // To query for a specific attribute, use:\r\n                /*\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AllOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"EntityDefName\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                        },\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"EntityDefAttributeName\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"Number\"\r\n                        }\r\n                    ]\r\n                },\r\n                */\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "This request queries Auto Number configurations for the app `:appName` based on the configuration of project `:projectId` and its parents. These settings are available in the Configuration app under the \"Number\" tab.\n\nThis query can return more than one entity for a given `:projectId`. To determine which one contains the proper configuration, look for the one with a `PartitionId` equal to `:projectId`. If none is found, look for one with a `PartitionId` equal to `:projectId`'s parent\\*, and so on. If none is found up to the domain root (zero), then look for one with a `PartitionId` of `-1`. If no such entity exists, then get the default settings from the app's XML (get XML from 5.2.2).\n\n\\*Determining all of the parent partitions can be done using the following query, which only needs to be run once:\n\n``` json\n{\n    \"PropertyName\": \"Query\",\n    \"EntityDef\": \"kahua_Core.kahua_DomainPartition\",\n    // See 1.1.4\n    \"EntityDefMode\": \"Lineal\",\n    \"Partition\": {\n        // See 1.1.3\n        \"Range\": \"0\",\n        \"IncludeChildPartitionsInRange\": true,\n        \"IncludeChildDomainPartitions\": true\n    },\n    // See 1.3.3\n    \"ImplicitsDisabled\": true,\n    // See 1.3.1\n    \"ScalarExplicits\": [\n        {\n            \"Path\": \"PartitionId\"\n        }\n    ],\n    \"Condition\": [\n        // See 1.2.2\n        {\n            \"PropertyName\": \"AnyOf\",\n            \"_children\": [\n                // See 1.2.4\n                {\n                    \"PropertyName\": \"PathedPartition\",\n                    \"Path\": \"Partition\",\n                    \"Is\": \"Below\"\n                },\n                // See 1.2.1\n                {\n                    \"PropertyName\": \"Data\",\n                    \"Path\": \"PartitionId\",\n                    \"Type\": \"EqualTo\",\n                    \"Value\": 0\n                }\n            ]\n        }\n    ]\n}\n\n ```"
              },
              "response": [
                {
                  "name": "Get By App",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"EntityDefName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"kahua_AEC_DailyReport.\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1518"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:40:12 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 50945129,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShareNumberInChildPartitions\": false,\n            \"UseParentAsSeed\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-07-25T17:49:10.063\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"StartingNumber\": 1,\n            \"Instance\": 1,\n            \"Width\": 4,\n            \"Id\": 50945129,\n            \"InstanceId\": 50945129,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        },\n        {\n            \"id\": 50940259,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShareNumberInChildPartitions\": false,\n            \"UseParentAsSeed\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-07-22T21:58:48.370\",\n            \"StartingNumber\": 1,\n            \"Instance\": 1,\n            \"Width\": 4,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50940259,\n            \"InstanceId\": 50940259,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        },\n        {\n            \"id\": 49709851,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"UseParentAsSeed\": false,\n            \"ShareNumberInChildPartitions\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-05-19T17:53:18.867\",\n            \"PartitionId\": -1,\n            \"DomainPartitionId\": 0,\n            \"Instance\": 1,\n            \"StartingNumber\": 1,\n            \"Width\": 4,\n            \"Id\": 49709851,\n            \"InstanceId\": 49709851,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                },
                {
                  "name": "Get By Entity",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"EntityDefName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                },\r\n                // To query for a specific attribute, use:\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1518"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "48"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:40:53 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 50945129,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShareNumberInChildPartitions\": false,\n            \"UseParentAsSeed\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-07-25T17:49:10.063\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"StartingNumber\": 1,\n            \"Instance\": 1,\n            \"Width\": 4,\n            \"Id\": 50945129,\n            \"InstanceId\": 50945129,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        },\n        {\n            \"id\": 50940259,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShareNumberInChildPartitions\": false,\n            \"UseParentAsSeed\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-07-22T21:58:48.370\",\n            \"StartingNumber\": 1,\n            \"Instance\": 1,\n            \"Width\": 4,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50940259,\n            \"InstanceId\": 50940259,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        },\n        {\n            \"id\": 49709851,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"UseParentAsSeed\": false,\n            \"ShareNumberInChildPartitions\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-05-19T17:53:18.867\",\n            \"PartitionId\": -1,\n            \"DomainPartitionId\": 0,\n            \"Instance\": 1,\n            \"StartingNumber\": 1,\n            \"Width\": 4,\n            \"Id\": 49709851,\n            \"InstanceId\": 49709851,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                },
                {
                  "name": "Get By Attribute",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AllOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"EntityDefName\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                        },\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Path\": \"EntityDefAttributeName\",\r\n                            \"Type\": \"EqualTo\",\r\n                            \"Value\": \"Number\"\r\n                        }\r\n                    ]\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1518"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "62"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:41:51 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 3,\n    \"entities\": [\n        {\n            \"id\": 50945129,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShareNumberInChildPartitions\": false,\n            \"UseParentAsSeed\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-07-25T17:49:10.063\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"StartingNumber\": 1,\n            \"Instance\": 1,\n            \"Width\": 4,\n            \"Id\": 50945129,\n            \"InstanceId\": 50945129,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        },\n        {\n            \"id\": 50940259,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"ShareNumberInChildPartitions\": false,\n            \"UseParentAsSeed\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-07-22T21:58:48.370\",\n            \"StartingNumber\": 1,\n            \"Instance\": 1,\n            \"Width\": 4,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50940259,\n            \"InstanceId\": 50940259,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        },\n        {\n            \"id\": 49709851,\n            \"entityDef\": \"kahua_Core.kahua_AutoNumberConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"UseParentAsSeed\": false,\n            \"ShareNumberInChildPartitions\": false,\n            \"AllowDuplicates\": true,\n            \"CreatedDateTime\": \"2025-05-19T17:53:18.867\",\n            \"PartitionId\": -1,\n            \"DomainPartitionId\": 0,\n            \"Instance\": 1,\n            \"StartingNumber\": 1,\n            \"Width\": 4,\n            \"Id\": 49709851,\n            \"InstanceId\": 49709851,\n            \"EntityDefAttributeName\": \"Number\",\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"Type\": \"AutoSuggest\",\n            \"AppNameLabel\": \"[AppLabel]\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                }
              ]
            },
            {
              "name": "5.2.7: Get Lookup List Config",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/lookuplists/:entityDefNames",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "lookuplists",
                    ":entityDefNames"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    },
                    {
                      "key": "entityDefNames",
                      "value": "kahua_AEC_DailyReport.DailyReport"
                    }
                  ]
                },
                "description": "Returns the lookup list configuration for the (comma separated) entities `:entityDefNames` the app `:appName` in project `:projectId`. Note that the entities in `:entityDefNames` should be the full names with the app name included.\n\nThe response body is a list of JSON objects, each with the following fields:\n\n- `PropertyName`: Always `LookupList`\n    \n- `Name`: The name of the lookup list\n    \n- `Label`: The localized name of the lookup list\n    \n- `Scope`: The scope of the lookup list. Equal to one of the following:\n    \n    - `Default`\n        \n    - `Domain`\n        \n- `ConfigurationDisabled`: Whether or not this lookup list is _not_ configurable\n    \n- `Values`: The lookup list values, each is an object with the following fields:\n    \n    - `PropertyName`: Always `Value`\n        \n    - `DisplayOrder`: Determines the relative order to display this value in the selector in Kahua\n        \n    - `Value`: The actual value of the lookup list item\n        \n    - `Label`: The localized value of the lookup list item"
              },
              "response": [
                {
                  "name": "Get DR Lookup Lists",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/lookuplists/:entityDefNames",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "lookuplists",
                        ":entityDefNames"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        },
                        {
                          "key": "entityDefNames",
                          "value": "kahua_AEC_DailyReport.DailyReport"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "5336"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:42:41 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_AEC_DailyReport.DailyReportShift\",\n        \"Label\": \"Shift\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Day\",\n                \"Label\": \"Day\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Night\",\n                \"Label\": \"Night\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_AEC_DailyReport.DailyReportLostDayCause\",\n        \"Label\": \"Lost Day Cause\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Weather\",\n                \"Label\": \"Weather\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Safety/Accident\",\n                \"Label\": \"Safety/Accident\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Equipment Failure\",\n                \"Label\": \"Equipment Failure\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Environmental\",\n                \"Label\": \"Environmental\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Permitting\",\n                \"Label\": \"Permitting\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Labor Strike/Dispute\",\n                \"Label\": \"Labor Strike/Dispute\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Utility Interruption\",\n                \"Label\": \"Utility Interruption\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Unforseen Site Conditions\",\n                \"Label\": \"Unforseen Site Conditions\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Other\",\n                \"Label\": \"Other\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_AEC_DailyReport.DailyReportLaborType\",\n        \"Label\": \"Labor Type\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Laborer\",\n                \"Label\": \"Laborer\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Mechanic\",\n                \"Label\": \"Mechanic\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Apprentice\",\n                \"Label\": \"Apprentice\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Trainee\",\n                \"Label\": \"Trainee\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Total Manpower\",\n                \"Label\": \"Total Manpower\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_AEC_DailyReport.DailyReportLaborClassification\",\n        \"Label\": \"Labor Classification\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Female\",\n                \"Label\": \"Female\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Minority\",\n                \"Label\": \"Minority\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Minority Female\",\n                \"Label\": \"Minority Female\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Non Union\",\n                \"Label\": \"Non Union\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Open Shop\",\n                \"Label\": \"Open Shop\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Other\",\n                \"Label\": \"Other\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Prevailing Wage\",\n                \"Label\": \"Prevailing Wage\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Union\",\n                \"Label\": \"Union\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Unknown\",\n                \"Label\": \"Unknown\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Veteran\",\n                \"Label\": \"Veteran\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_UniversalLookup.Universal1\",\n        \"Label\": \"Custom Universal Lookup 1\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 1-1\",\n                \"Label\": \"Lookup 1 Value 1\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 1-2\",\n                \"Label\": \"Lookup 1 Value 2\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 1-3\",\n                \"Label\": \"Lookup 1 Value 3\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_UniversalLookup.Universal2\",\n        \"Label\": \"Custom Universal Lookup 2\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 2-1\",\n                \"Label\": \"Lookup 2 Value 1\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 2-2\",\n                \"Label\": \"Lookup 2 Value 2\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 2-3\",\n                \"Label\": \"Lookup 2 Value 3\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_UniversalLookup.Universal3\",\n        \"Label\": \"Custom Universal Lookup 3\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 3-1\",\n                \"Label\": \"Lookup 3 Value 1\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 3-2\",\n                \"Label\": \"Lookup 3 Value 2\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 3-3\",\n                \"Label\": \"Lookup 3 Value 3\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_UniversalLookup.Universal4\",\n        \"Label\": \"Custom Universal Lookup 4\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 4-1\",\n                \"Label\": \"Lookup 4 Value 1\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 4-2\",\n                \"Label\": \"Lookup 4 Value 2\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 4-3\",\n                \"Label\": \"Lookup 4 Value 3\"\n            }\n        ]\n    },\n    {\n        \"PropertyName\": \"LookupList\",\n        \"Name\": \"kahua_UniversalLookup.Universal5\",\n        \"Label\": \"Custom Universal Lookup 5\",\n        \"Scope\": \"Default\",\n        \"ConfigurationDisabled\": \"False\",\n        \"Values\": [\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 5-1\",\n                \"Label\": \"Lookup 5 Value 1\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 5-2\",\n                \"Label\": \"Lookup 5 Value 2\"\n            },\n            {\n                \"PropertyName\": \"Value\",\n                \"DisplayOrder\": \"0\",\n                \"Value\": \"Lookup 5-3\",\n                \"Label\": \"Lookup 5 Value 3\"\n            }\n        ]\n    }\n]"
                }
              ]
            },
            {
              "name": "5.2.8: (QRY) Get Config Entities",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_ConfigEntity\",\r\n    // See 1.1.4\r\n    \"EntityDefMode\": \"Lineal\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // Example of adding an explicit:\r\n    /*\r\n    // See 1.3.2:\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"DisciplineMap\",\r\n            \"IsDynamic\": true,\r\n            \"DataType\": \"Entity\"\r\n        }\r\n    ],\r\n    */\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"AppName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_FileManager\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "Some apps use entities to store configuration data. They are much more flexible than the basic settings that can be defined in the app def (see 5.1.12). Note that these two are not exclusive, and some apps (e.g., the File Manager app) use both. All config entities derive from `kahua_Core.kahauConfigEntity`. Each config entity type shows up in the Configuration app as its own tab. If Live Entity view is enabled, it will appear when selecting on the tab of a config entity in the Configuration app.\n\nSee 5.2.6 for more information on how to use this query."
              },
              "response": [
                {
                  "name": "Get File Manager Config Entities",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_ConfigEntity\",\r\n    // See 1.1.4\r\n    \"EntityDefMode\": \"Lineal\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true,\r\n    // See 1.3.2:\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"DisciplineMap\",\r\n            \"IsDynamic\": true,\r\n            \"DataType\": \"Entity\"\r\n        }\r\n    ],\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"AppName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_FileManager\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "24768"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "101"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:43:31 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 6,\n    \"entities\": [\n        {\n            \"id\": 50941146,\n            \"entityDef\": \"kahua_FileManager.DisciplineConfiguration\",\n            \"hubPath\": \"kahua_FileManager.DisciplineConfig\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n            \"DisciplineStartPosition\": 1,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50941146,\n            \"InstanceId\": 50941146,\n            \"AppName\": \"kahua_FileManager\",\n            \"SourceApp\": \"kahua_FileManager\",\n            \"ClientId\": \"Discipline_Config\",\n            \"AppNameLabel\": \"Workflow Labels\",\n            \"DisciplineMap\": [\n                {\n                    \"id\": 50941147,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941147,\n                    \"InstanceId\": 50941147,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"G\",\n                    \"Discipline\": \"General\",\n                    \"ClientId\": \"Discipline_Config_General\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941148,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941148,\n                    \"InstanceId\": 50941148,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"H\",\n                    \"Discipline\": \"Hazardous Materials\",\n                    \"ClientId\": \"Discipline_Config_Hazardous_Materials\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941149,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941149,\n                    \"InstanceId\": 50941149,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"V\",\n                    \"Discipline\": \"Survey/Mapping\",\n                    \"ClientId\": \"Discipline_Config_Survey_Mapping\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941150,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941150,\n                    \"InstanceId\": 50941150,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"B\",\n                    \"Discipline\": \"Geotechnical\",\n                    \"ClientId\": \"Discipline_Config_Geotechnical\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941151,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941151,\n                    \"InstanceId\": 50941151,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"C\",\n                    \"Discipline\": \"Civil\",\n                    \"ClientId\": \"Discipline_Config_Civil\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941152,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941152,\n                    \"InstanceId\": 50941152,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"L\",\n                    \"Discipline\": \"Landscape\",\n                    \"ClientId\": \"Discipline_Config_Landscape\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941153,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941153,\n                    \"InstanceId\": 50941153,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"S\",\n                    \"Discipline\": \"Structural\",\n                    \"ClientId\": \"Discipline_Config_Structural\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941154,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941154,\n                    \"InstanceId\": 50941154,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"A\",\n                    \"Discipline\": \"Architectural\",\n                    \"ClientId\": \"Discipline_Config_Architectural\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941155,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941155,\n                    \"InstanceId\": 50941155,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"I\",\n                    \"Discipline\": \"Interiors\",\n                    \"ClientId\": \"Discipline_Config_Interiors\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941156,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941156,\n                    \"InstanceId\": 50941156,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"Q\",\n                    \"Discipline\": \"Equipment\",\n                    \"ClientId\": \"Discipline_Config_Equipment\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941157,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941157,\n                    \"InstanceId\": 50941157,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"F\",\n                    \"Discipline\": \"Fire Protection\",\n                    \"ClientId\": \"Discipline_Config_Fire_Protection\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941158,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941158,\n                    \"InstanceId\": 50941158,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"P\",\n                    \"Discipline\": \"Plumbing\",\n                    \"ClientId\": \"Discipline_Config_Plumbing\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941159,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941159,\n                    \"InstanceId\": 50941159,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"D\",\n                    \"Discipline\": \"Process\",\n                    \"ClientId\": \"Discipline_Config_Process\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941160,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941160,\n                    \"InstanceId\": 50941160,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"M\",\n                    \"Discipline\": \"Mechanical\",\n                    \"ClientId\": \"Discipline_Config_Mechanical\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941161,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941161,\n                    \"InstanceId\": 50941161,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"E\",\n                    \"Discipline\": \"Electrical\",\n                    \"ClientId\": \"Discipline_Config_Electrical\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941162,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941162,\n                    \"InstanceId\": 50941162,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"W\",\n                    \"Discipline\": \"Distributed Energy\",\n                    \"ClientId\": \"Discipline_Config_Distributed_Energy\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941163,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941163,\n                    \"InstanceId\": 50941163,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"T\",\n                    \"Discipline\": \"Telecommunications\",\n                    \"ClientId\": \"Discipline_Config_Telecommunications\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941164,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941164,\n                    \"InstanceId\": 50941164,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"R\",\n                    \"Discipline\": \"Resource\",\n                    \"ClientId\": \"Discipline_Config_Resource\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941165,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941165,\n                    \"InstanceId\": 50941165,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"X\",\n                    \"Discipline\": \"Other\",\n                    \"ClientId\": \"Discipline_Config_Other\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941166,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941166,\n                    \"InstanceId\": 50941166,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"Z\",\n                    \"Discipline\": \"Contractor/Shop Drawings\",\n                    \"ClientId\": \"Discipline_Config_Contractor_Shop_Drawings\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 50941167,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T17:04:01.580\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941167,\n                    \"InstanceId\": 50941167,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"O\",\n                    \"Discipline\": \"Operations\",\n                    \"ClientId\": \"Discipline_Config_Operations\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                }\n            ]\n        },\n        {\n            \"id\": 50941145,\n            \"entityDef\": \"kahua_FileManager.DrawingLogConfiguration\",\n            \"hubPath\": \"kahua_FileManager.DrawingLogConfig\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"EnforceNomenclature\": false,\n            \"ApplyNomenclature\": false,\n            \"ConsolidateFiles\": false,\n            \"CheckRevisionGaps\": false,\n            \"AllowTaggingInReleaseReady\": false,\n            \"CopyTagsToNewRevisions\": false,\n            \"CreatedDateTime\": \"2025-07-23T17:04:00.187\",\n            \"QADuration\": 1,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50941145,\n            \"InstanceId\": 50941145,\n            \"AppName\": \"kahua_FileManager\",\n            \"SourceApp\": \"kahua_FileManager\",\n            \"FileNameNomenclature\": \"[Attribute(Drawing.DocumentID)] Rev[Attribute(Revision)] -- [Attribute(Drawing.Title)]\",\n            \"RejectedRevisionMarkupCopyOption\": \"CopyOpen\",\n            \"CopyOption\": \"CopyOpen\",\n            \"VersionMarkupCopyOption\": \"AlwaysCopy\",\n            \"ClientId\": \"DrawingLog_Config\",\n            \"AppNameLabel\": \"Workflow Labels\"\n        },\n        {\n            \"id\": 50938404,\n            \"entityDef\": \"kahua_FileManager.FileConfiguration\",\n            \"hubPath\": \"kahua_FileManager.FileConfig\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"CreatedDateTime\": \"2025-07-22T19:45:05.033\",\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50938404,\n            \"InstanceId\": 50938404,\n            \"AppName\": \"kahua_FileManager\",\n            \"SourceApp\": \"kahua_FileManager\",\n            \"VersionMarkupCopyOption\": \"AlwaysCopy\",\n            \"ClientId\": \"File_Config\",\n            \"AppNameLabel\": \"Workflow Labels\"\n        },\n        {\n            \"id\": 49709781,\n            \"entityDef\": \"kahua_FileManager.FileConfiguration\",\n            \"hubPath\": \"kahua_FileManager.FileConfig\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"ModifiedDateTime\": \"2025-05-19T17:53:13.163\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:13.163\",\n            \"PartitionId\": -1,\n            \"DomainPartitionId\": 0,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"Id\": 49709781,\n            \"InstanceId\": 49709781,\n            \"AppName\": \"kahua_FileManager\",\n            \"SourceApp\": \"kahua_FileManager\",\n            \"VersionMarkupCopyOption\": \"AlwaysCopy\",\n            \"ClientId\": \"File_Config\",\n            \"AppNameLabel\": \"Workflow Labels\"\n        },\n        {\n            \"id\": 49709759,\n            \"entityDef\": \"kahua_FileManager.DisciplineConfiguration\",\n            \"hubPath\": \"kahua_FileManager.DisciplineConfig\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n            \"PartitionId\": -1,\n            \"DomainPartitionId\": 0,\n            \"DisciplineStartPosition\": 1,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"Id\": 49709759,\n            \"InstanceId\": 49709759,\n            \"AppName\": \"kahua_FileManager\",\n            \"SourceApp\": \"kahua_FileManager\",\n            \"ClientId\": \"Discipline_Config\",\n            \"AppNameLabel\": \"Workflow Labels\",\n            \"DisciplineMap\": [\n                {\n                    \"id\": 49709760,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709760,\n                    \"InstanceId\": 49709760,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"G\",\n                    \"Discipline\": \"General\",\n                    \"ClientId\": \"Discipline_Config_General\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709761,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709761,\n                    \"InstanceId\": 49709761,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"H\",\n                    \"Discipline\": \"Hazardous Materials\",\n                    \"ClientId\": \"Discipline_Config_Hazardous_Materials\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709762,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709762,\n                    \"InstanceId\": 49709762,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"V\",\n                    \"Discipline\": \"Survey/Mapping\",\n                    \"ClientId\": \"Discipline_Config_Survey_Mapping\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709763,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709763,\n                    \"InstanceId\": 49709763,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"B\",\n                    \"Discipline\": \"Geotechnical\",\n                    \"ClientId\": \"Discipline_Config_Geotechnical\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709764,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709764,\n                    \"InstanceId\": 49709764,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"C\",\n                    \"Discipline\": \"Civil\",\n                    \"ClientId\": \"Discipline_Config_Civil\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709765,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709765,\n                    \"InstanceId\": 49709765,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"L\",\n                    \"Discipline\": \"Landscape\",\n                    \"ClientId\": \"Discipline_Config_Landscape\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709766,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709766,\n                    \"InstanceId\": 49709766,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"S\",\n                    \"Discipline\": \"Structural\",\n                    \"ClientId\": \"Discipline_Config_Structural\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709767,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709767,\n                    \"InstanceId\": 49709767,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"A\",\n                    \"Discipline\": \"Architectural\",\n                    \"ClientId\": \"Discipline_Config_Architectural\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709768,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709768,\n                    \"InstanceId\": 49709768,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"I\",\n                    \"Discipline\": \"Interiors\",\n                    \"ClientId\": \"Discipline_Config_Interiors\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709769,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709769,\n                    \"InstanceId\": 49709769,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"Q\",\n                    \"Discipline\": \"Equipment\",\n                    \"ClientId\": \"Discipline_Config_Equipment\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709770,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709770,\n                    \"InstanceId\": 49709770,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"F\",\n                    \"Discipline\": \"Fire Protection\",\n                    \"ClientId\": \"Discipline_Config_Fire_Protection\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709771,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709771,\n                    \"InstanceId\": 49709771,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"P\",\n                    \"Discipline\": \"Plumbing\",\n                    \"ClientId\": \"Discipline_Config_Plumbing\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709772,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709772,\n                    \"InstanceId\": 49709772,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"D\",\n                    \"Discipline\": \"Process\",\n                    \"ClientId\": \"Discipline_Config_Process\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709773,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709773,\n                    \"InstanceId\": 49709773,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"M\",\n                    \"Discipline\": \"Mechanical\",\n                    \"ClientId\": \"Discipline_Config_Mechanical\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709774,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709774,\n                    \"InstanceId\": 49709774,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"E\",\n                    \"Discipline\": \"Electrical\",\n                    \"ClientId\": \"Discipline_Config_Electrical\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709775,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709775,\n                    \"InstanceId\": 49709775,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"W\",\n                    \"Discipline\": \"Distributed Energy\",\n                    \"ClientId\": \"Discipline_Config_Distributed_Energy\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709776,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709776,\n                    \"InstanceId\": 49709776,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"T\",\n                    \"Discipline\": \"Telecommunications\",\n                    \"ClientId\": \"Discipline_Config_Telecommunications\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709777,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709777,\n                    \"InstanceId\": 49709777,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"R\",\n                    \"Discipline\": \"Resource\",\n                    \"ClientId\": \"Discipline_Config_Resource\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709778,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709778,\n                    \"InstanceId\": 49709778,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"X\",\n                    \"Discipline\": \"Other\",\n                    \"ClientId\": \"Discipline_Config_Other\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709779,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709779,\n                    \"InstanceId\": 49709779,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"Z\",\n                    \"Discipline\": \"Contractor/Shop Drawings\",\n                    \"ClientId\": \"Discipline_Config_Contractor_Shop_Drawings\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                },\n                {\n                    \"id\": 49709780,\n                    \"entityDef\": \"kahua_FileManager.DisciplineMapItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"ModifiedDateTime\": \"2025-05-19T17:53:12.210\",\n                    \"PartitionId\": -1,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 49709780,\n                    \"InstanceId\": 49709780,\n                    \"SourceApp\": \"kahua_FileManager\",\n                    \"DisciplineMatch\": \"O\",\n                    \"Discipline\": \"Operations\",\n                    \"ClientId\": \"Discipline_Config_Operations\",\n                    \"AppNameLabel\": \"Workflow Labels\"\n                }\n            ]\n        },\n        {\n            \"id\": 49709758,\n            \"entityDef\": \"kahua_FileManager.DrawingLogConfiguration\",\n            \"hubPath\": \"kahua_FileManager.DrawingLogConfig\\\\Active\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"EnforceNomenclature\": false,\n            \"ApplyNomenclature\": false,\n            \"ConsolidateFiles\": false,\n            \"CheckRevisionGaps\": false,\n            \"AllowTaggingInReleaseReady\": false,\n            \"CopyTagsToNewRevisions\": false,\n            \"MarkupEnabled\": false,\n            \"ModifiedDateTime\": \"2025-05-19T17:53:12.113\",\n            \"CreatedDateTime\": \"2025-05-19T17:53:12.113\",\n            \"PartitionId\": -1,\n            \"DomainPartitionId\": 0,\n            \"Instance\": 1,\n            \"QADuration\": 1,\n            \"PortableViewInstance\": 1,\n            \"Id\": 49709758,\n            \"InstanceId\": 49709758,\n            \"AppName\": \"kahua_FileManager\",\n            \"SourceApp\": \"kahua_FileManager\",\n            \"FileNameNomenclature\": \"[Attribute(Drawing.DocumentID)] Rev[Attribute(Revision)] -- [Attribute(Drawing.Title)]\",\n            \"RejectedRevisionMarkupCopyOption\": \"CopyOpen\",\n            \"CopyOption\": \"CopyOpen\",\n            \"VersionMarkupCopyOption\": \"AlwaysCopy\",\n            \"ClientId\": \"DrawingLog_Config\",\n            \"AppNameLabel\": \"Workflow Labels\"\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                }
              ]
            },
            {
              "name": "5.2.9: (QRY) Get Default Values",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_EntityConfig\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // To query for a specific app, use:\r\n                // See 1.2.1\r\n                \r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"EntityDefName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"kahua_AEC_DailyReport.\"\r\n                },\r\n                // To query for a specific entity type, use:\r\n                \r\n                // See 1.2.1\r\n                // {\r\n                //     \"PROPERTYNAME\": \"DATA\",\r\n                //     \"PATH\": \"ENTITYDEFNAME\",\r\n                //     \"TYPE\": \"EQUALTO\",\r\n                //     \"VALUE\": \"KAHUA_AEC_DAILYREPORT.DAILYREPORT\"\r\n                // },\r\n                \r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"EntityAttributeConfiguration\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "This query returns the default attribute values from the \"Defaults\" tab in the Configuration app.\n\nSee 5.2.6 for more information on how to use this query."
              },
              "response": [
                {
                  "name": "Get By App",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_EntityConfig\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"EntityDefName\",\r\n                    \"Type\": \"StartsWith\",\r\n                    \"Value\": \"kahua_AEC_DailyReport.\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"EntityAttributeConfiguration\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "39344"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "16"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:44:11 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50944566,\n            \"entityDef\": \"kahua_Core.kahua_EntityConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"Id\": 50944566,\n            \"InstanceId\": 50944566,\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"SourceApp\": \"kahua_AEC_DailyReport\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"EntityAttributeConfiguration\": [\n                {\n                    \"id\": 50944567,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"PartitionId\": 0,\n                    \"DomainPartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944567,\n                    \"InstanceId\": 50944567,\n                    \"EntityDefAttributeName\": \"AddWeatherOnSave\",\n                    \"DataType\": \"Boolean\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944568,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsXMLValue\": false,\n                    \"IsRequired\": true,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944568,\n                    \"InstanceId\": 50944568,\n                    \"EntityDefAttributeName\": \"Author\",\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944569,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944569,\n                    \"InstanceId\": 50944569,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"CopyDailyReportMaterials\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944570,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944570,\n                    \"InstanceId\": 50944570,\n                    \"EntityDefAttributeName\": \"UniversalLookup1\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal1\",\n                    \"DataType\": \"Lookup\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944571,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944571,\n                    \"InstanceId\": 50944571,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup2\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944572,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944572,\n                    \"InstanceId\": 50944572,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup3\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944573,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944573,\n                    \"InstanceId\": 50944573,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup4\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944574,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944574,\n                    \"InstanceId\": 50944574,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup5\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944575,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944575,\n                    \"InstanceId\": 50944575,\n                    \"EntityDefAttributeName\": \"Date\",\n                    \"DataType\": \"Date\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultDate IsRelativeDate=\\\"True\\\" OffsetEnum=\\\"Day\\\" OffsetValue=\\\"0\\\" AbsoluteDate=\\\"\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944576,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944576,\n                    \"InstanceId\": 50944576,\n                    \"EntityDefAttributeName\": \"FieldRadioButton1\",\n                    \"DataType\": \"Text\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944577,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944577,\n                    \"InstanceId\": 50944577,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton10\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944578,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944578,\n                    \"InstanceId\": 50944578,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton11\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944579,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944579,\n                    \"InstanceId\": 50944579,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton12\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944580,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944580,\n                    \"InstanceId\": 50944580,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton13\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944581,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944581,\n                    \"InstanceId\": 50944581,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton14\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944582,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944582,\n                    \"InstanceId\": 50944582,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton15\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944583,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944583,\n                    \"InstanceId\": 50944583,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton16\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944584,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944584,\n                    \"InstanceId\": 50944584,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton17\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944585,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944585,\n                    \"InstanceId\": 50944585,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton18\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944586,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944586,\n                    \"InstanceId\": 50944586,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton19\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944587,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944587,\n                    \"InstanceId\": 50944587,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944588,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944588,\n                    \"InstanceId\": 50944588,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton20\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944589,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944589,\n                    \"InstanceId\": 50944589,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944590,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944590,\n                    \"InstanceId\": 50944590,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944591,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944591,\n                    \"InstanceId\": 50944591,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944592,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944592,\n                    \"InstanceId\": 50944592,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton6\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944593,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944593,\n                    \"InstanceId\": 50944593,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton7\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944594,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944594,\n                    \"InstanceId\": 50944594,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton8\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944595,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944595,\n                    \"InstanceId\": 50944595,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton9\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944596,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944596,\n                    \"InstanceId\": 50944596,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"IsLostDay\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944597,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944597,\n                    \"InstanceId\": 50944597,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"LostDayCause\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportLostDayCause\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944598,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944598,\n                    \"InstanceId\": 50944598,\n                    \"EntityDefAttributeName\": \"LostDayDateDueOffset\",\n                    \"DataType\": \"Integer\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultInteger Value=\\\"0\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944599,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944599,\n                    \"InstanceId\": 50944599,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeDue\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944600,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944600,\n                    \"InstanceId\": 50944600,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeSent\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944601,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944601,\n                    \"InstanceId\": 50944601,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"LostDayDelayReporter\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944602,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944602,\n                    \"InstanceId\": 50944602,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"Notes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944603,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944603,\n                    \"InstanceId\": 50944603,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"Shift\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportShift\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944604,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944604,\n                    \"InstanceId\": 50944604,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"WeatherNotes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944605,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944605,\n                    \"InstanceId\": 50944605,\n                    \"EntityDefAttributeName\": \"ShortLabel\",\n                    \"DataType\": \"TextTokenized\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944606,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944606,\n                    \"InstanceId\": 50944606,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"LongLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944607,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944607,\n                    \"InstanceId\": 50944607,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"DetailLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944608,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944608,\n                    \"InstanceId\": 50944608,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"CreatedBy\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultEntity Text=\\\"[CurrentUser]\\\">\\r\\n    <Key />\\r\\n  </DefaultEntity>\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944609,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944609,\n                    \"InstanceId\": 50944609,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"AppNameLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[DailyReportAppNameLabel]\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944610,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944610,\n                    \"InstanceId\": 50944610,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"RecycleBinLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                }\n            ]\n        },\n        {\n            \"id\": 50940623,\n            \"entityDef\": \"kahua_Core.kahua_EntityConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n            \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n            \"Instance\": 3,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50940623,\n            \"InstanceId\": 50940716,\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"SourceApp\": \"kahua_AEC_DailyReport\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"EntityAttributeConfiguration\": [\n                {\n                    \"id\": 50940432,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsXMLValue\": false,\n                    \"IsRequired\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"PartitionId\": 50926912,\n                    \"DomainPartitionId\": 50926912,\n                    \"Id\": 50940432,\n                    \"InstanceId\": 50940717,\n                    \"EntityDefAttributeName\": \"AddWeatherOnSave\",\n                    \"DataType\": \"Boolean\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940433,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsXMLValue\": false,\n                    \"IsRequired\": true,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940433,\n                    \"InstanceId\": 50940718,\n                    \"EntityDefAttributeName\": \"Author\",\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultEntity Text=\\\"[CurrentUser]\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940434,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940434,\n                    \"InstanceId\": 50940719,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"CopyDailyReportMaterials\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940435,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940435,\n                    \"InstanceId\": 50940720,\n                    \"EntityDefAttributeName\": \"UniversalLookup1\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal1\",\n                    \"DataType\": \"Lookup\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940436,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940436,\n                    \"InstanceId\": 50940721,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup2\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940437,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940437,\n                    \"InstanceId\": 50940722,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup3\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940438,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940438,\n                    \"InstanceId\": 50940723,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup4\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940439,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940439,\n                    \"InstanceId\": 50940724,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup5\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940440,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940440,\n                    \"InstanceId\": 50940725,\n                    \"EntityDefAttributeName\": \"Date\",\n                    \"DataType\": \"Date\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultDate IsRelativeDate=\\\"True\\\" OffsetEnum=\\\"Day\\\" OffsetValue=\\\"0\\\" AbsoluteDate=\\\"\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940441,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940441,\n                    \"InstanceId\": 50940726,\n                    \"EntityDefAttributeName\": \"FieldRadioButton1\",\n                    \"DataType\": \"Text\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940442,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940442,\n                    \"InstanceId\": 50940727,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton10\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940443,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940443,\n                    \"InstanceId\": 50940728,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton11\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940444,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940444,\n                    \"InstanceId\": 50940729,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton12\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940445,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940445,\n                    \"InstanceId\": 50940730,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton13\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940446,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940446,\n                    \"InstanceId\": 50940731,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton14\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940447,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940447,\n                    \"InstanceId\": 50940732,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton15\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940448,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940448,\n                    \"InstanceId\": 50940733,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton16\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940449,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940449,\n                    \"InstanceId\": 50940734,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton17\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940450,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940450,\n                    \"InstanceId\": 50940735,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton18\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940451,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940451,\n                    \"InstanceId\": 50940736,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton19\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940452,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940452,\n                    \"InstanceId\": 50940737,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940453,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940453,\n                    \"InstanceId\": 50940738,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton20\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940454,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940454,\n                    \"InstanceId\": 50940739,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940455,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940455,\n                    \"InstanceId\": 50940740,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940456,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940456,\n                    \"InstanceId\": 50940741,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940457,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940457,\n                    \"InstanceId\": 50940742,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton6\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940458,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940458,\n                    \"InstanceId\": 50940743,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton7\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940459,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940459,\n                    \"InstanceId\": 50940744,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton8\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940460,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940460,\n                    \"InstanceId\": 50940745,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton9\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940461,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940461,\n                    \"InstanceId\": 50940746,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"IsLostDay\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940462,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940462,\n                    \"InstanceId\": 50940747,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"LostDayCause\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportLostDayCause\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940463,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940463,\n                    \"InstanceId\": 50940748,\n                    \"EntityDefAttributeName\": \"LostDayDateDueOffset\",\n                    \"DataType\": \"Integer\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultInteger Value=\\\"0\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940464,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940464,\n                    \"InstanceId\": 50940749,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeDue\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940465,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940465,\n                    \"InstanceId\": 50940750,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeSent\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940466,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940466,\n                    \"InstanceId\": 50940751,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"LostDayDelayReporter\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940467,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940467,\n                    \"InstanceId\": 50940752,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"Notes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940468,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940468,\n                    \"InstanceId\": 50940753,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"Shift\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportShift\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940469,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940469,\n                    \"InstanceId\": 50940754,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"WeatherNotes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940662,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940662,\n                    \"InstanceId\": 50940755,\n                    \"EntityDefAttributeName\": \"ShortLabel\",\n                    \"DataType\": \"TextTokenized\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940663,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940663,\n                    \"InstanceId\": 50940756,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"LongLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940664,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940664,\n                    \"InstanceId\": 50940757,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"DetailLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940665,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940665,\n                    \"InstanceId\": 50940758,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"CreatedBy\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultEntity Text=\\\"[CurrentUser]\\\">\\r\\n    <Key />\\r\\n  </DefaultEntity>\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940666,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940666,\n                    \"InstanceId\": 50940759,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"AppNameLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[DailyReportAppNameLabel]\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940667,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940667,\n                    \"InstanceId\": 50940760,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"RecycleBinLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                }\n            ]\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                },
                {
                  "name": "Get By Entity",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_EntityConfig\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"EntityDefName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_AEC_DailyReport.DailyReport\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"EntityAttributeConfiguration\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "39344"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "78"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:44:49 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50944566,\n            \"entityDef\": \"kahua_Core.kahua_EntityConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"Instance\": 1,\n            \"Id\": 50944566,\n            \"InstanceId\": 50944566,\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"SourceApp\": \"kahua_AEC_DailyReport\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"EntityAttributeConfiguration\": [\n                {\n                    \"id\": 50944567,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"PartitionId\": 0,\n                    \"DomainPartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944567,\n                    \"InstanceId\": 50944567,\n                    \"EntityDefAttributeName\": \"AddWeatherOnSave\",\n                    \"DataType\": \"Boolean\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944568,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsXMLValue\": false,\n                    \"IsRequired\": true,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944568,\n                    \"InstanceId\": 50944568,\n                    \"EntityDefAttributeName\": \"Author\",\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944569,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944569,\n                    \"InstanceId\": 50944569,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"CopyDailyReportMaterials\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944570,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944570,\n                    \"InstanceId\": 50944570,\n                    \"EntityDefAttributeName\": \"UniversalLookup1\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal1\",\n                    \"DataType\": \"Lookup\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944571,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944571,\n                    \"InstanceId\": 50944571,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup2\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944572,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944572,\n                    \"InstanceId\": 50944572,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup3\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944573,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944573,\n                    \"InstanceId\": 50944573,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup4\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944574,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944574,\n                    \"InstanceId\": 50944574,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup5\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944575,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944575,\n                    \"InstanceId\": 50944575,\n                    \"EntityDefAttributeName\": \"Date\",\n                    \"DataType\": \"Date\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultDate IsRelativeDate=\\\"True\\\" OffsetEnum=\\\"Day\\\" OffsetValue=\\\"0\\\" AbsoluteDate=\\\"\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944576,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944576,\n                    \"InstanceId\": 50944576,\n                    \"EntityDefAttributeName\": \"FieldRadioButton1\",\n                    \"DataType\": \"Text\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944577,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944577,\n                    \"InstanceId\": 50944577,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton10\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944578,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944578,\n                    \"InstanceId\": 50944578,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton11\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944579,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944579,\n                    \"InstanceId\": 50944579,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton12\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944580,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944580,\n                    \"InstanceId\": 50944580,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton13\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944581,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944581,\n                    \"InstanceId\": 50944581,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton14\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944582,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944582,\n                    \"InstanceId\": 50944582,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton15\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944583,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944583,\n                    \"InstanceId\": 50944583,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton16\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944584,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944584,\n                    \"InstanceId\": 50944584,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton17\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944585,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944585,\n                    \"InstanceId\": 50944585,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton18\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944586,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944586,\n                    \"InstanceId\": 50944586,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton19\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944587,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944587,\n                    \"InstanceId\": 50944587,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944588,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944588,\n                    \"InstanceId\": 50944588,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton20\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944589,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944589,\n                    \"InstanceId\": 50944589,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944590,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944590,\n                    \"InstanceId\": 50944590,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944591,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944591,\n                    \"InstanceId\": 50944591,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944592,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944592,\n                    \"InstanceId\": 50944592,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton6\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944593,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944593,\n                    \"InstanceId\": 50944593,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton7\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944594,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944594,\n                    \"InstanceId\": 50944594,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton8\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944595,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944595,\n                    \"InstanceId\": 50944595,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton9\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944596,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944596,\n                    \"InstanceId\": 50944596,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"IsLostDay\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944597,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944597,\n                    \"InstanceId\": 50944597,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"LostDayCause\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportLostDayCause\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944598,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944598,\n                    \"InstanceId\": 50944598,\n                    \"EntityDefAttributeName\": \"LostDayDateDueOffset\",\n                    \"DataType\": \"Integer\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultInteger Value=\\\"0\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944599,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944599,\n                    \"InstanceId\": 50944599,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeDue\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944600,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944600,\n                    \"InstanceId\": 50944600,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeSent\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944601,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944601,\n                    \"InstanceId\": 50944601,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"LostDayDelayReporter\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944602,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944602,\n                    \"InstanceId\": 50944602,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"Notes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944603,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944603,\n                    \"InstanceId\": 50944603,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"Shift\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportShift\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944604,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944604,\n                    \"InstanceId\": 50944604,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"WeatherNotes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944605,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944605,\n                    \"InstanceId\": 50944605,\n                    \"EntityDefAttributeName\": \"ShortLabel\",\n                    \"DataType\": \"TextTokenized\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944606,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944606,\n                    \"InstanceId\": 50944606,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"LongLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944607,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944607,\n                    \"InstanceId\": 50944607,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"DetailLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944608,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944608,\n                    \"InstanceId\": 50944608,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"CreatedBy\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultEntity Text=\\\"[CurrentUser]\\\">\\r\\n    <Key />\\r\\n  </DefaultEntity>\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944609,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944609,\n                    \"InstanceId\": 50944609,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"AppNameLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[DailyReportAppNameLabel]\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50944610,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:07.420\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"Instance\": 1,\n                    \"Id\": 50944610,\n                    \"InstanceId\": 50944610,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"RecycleBinLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                }\n            ]\n        },\n        {\n            \"id\": 50940623,\n            \"entityDef\": \"kahua_Core.kahua_EntityConfig\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n            \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n            \"Instance\": 3,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50940623,\n            \"InstanceId\": 50940716,\n            \"EntityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"SourceApp\": \"kahua_AEC_DailyReport\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"EntityAttributeConfiguration\": [\n                {\n                    \"id\": 50940432,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsXMLValue\": false,\n                    \"IsRequired\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"PartitionId\": 50926912,\n                    \"DomainPartitionId\": 50926912,\n                    \"Id\": 50940432,\n                    \"InstanceId\": 50940717,\n                    \"EntityDefAttributeName\": \"AddWeatherOnSave\",\n                    \"DataType\": \"Boolean\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940433,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsXMLValue\": false,\n                    \"IsRequired\": true,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940433,\n                    \"InstanceId\": 50940718,\n                    \"EntityDefAttributeName\": \"Author\",\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultEntity Text=\\\"[CurrentUser]\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940434,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940434,\n                    \"InstanceId\": 50940719,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"CopyDailyReportMaterials\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultBoolean Value=\\\"false\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940435,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940435,\n                    \"InstanceId\": 50940720,\n                    \"EntityDefAttributeName\": \"UniversalLookup1\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal1\",\n                    \"DataType\": \"Lookup\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940436,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940436,\n                    \"InstanceId\": 50940721,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup2\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940437,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940437,\n                    \"InstanceId\": 50940722,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup3\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940438,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940438,\n                    \"InstanceId\": 50940723,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup4\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940439,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940439,\n                    \"InstanceId\": 50940724,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"UniversalLookup5\",\n                    \"LookupListName\": \"kahua_UniversalLookup.Universal5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940440,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940440,\n                    \"InstanceId\": 50940725,\n                    \"EntityDefAttributeName\": \"Date\",\n                    \"DataType\": \"Date\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultDate IsRelativeDate=\\\"True\\\" OffsetEnum=\\\"Day\\\" OffsetValue=\\\"0\\\" AbsoluteDate=\\\"\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940441,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940441,\n                    \"InstanceId\": 50940726,\n                    \"EntityDefAttributeName\": \"FieldRadioButton1\",\n                    \"DataType\": \"Text\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940442,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940442,\n                    \"InstanceId\": 50940727,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton10\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940443,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940443,\n                    \"InstanceId\": 50940728,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton11\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940444,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940444,\n                    \"InstanceId\": 50940729,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton12\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940445,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940445,\n                    \"InstanceId\": 50940730,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton13\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940446,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940446,\n                    \"InstanceId\": 50940731,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton14\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940447,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940447,\n                    \"InstanceId\": 50940732,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton15\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940448,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940448,\n                    \"InstanceId\": 50940733,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton16\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940449,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940449,\n                    \"InstanceId\": 50940734,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton17\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940450,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940450,\n                    \"InstanceId\": 50940735,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton18\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940451,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940451,\n                    \"InstanceId\": 50940736,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton19\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940452,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940452,\n                    \"InstanceId\": 50940737,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton2\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940453,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940453,\n                    \"InstanceId\": 50940738,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton20\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940454,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940454,\n                    \"InstanceId\": 50940739,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton3\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940455,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940455,\n                    \"InstanceId\": 50940740,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton4\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940456,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940456,\n                    \"InstanceId\": 50940741,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton5\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940457,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940457,\n                    \"InstanceId\": 50940742,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton6\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940458,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940458,\n                    \"InstanceId\": 50940743,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton7\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940459,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940459,\n                    \"InstanceId\": 50940744,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton8\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940460,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940460,\n                    \"InstanceId\": 50940745,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"FieldRadioButton9\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940461,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940461,\n                    \"InstanceId\": 50940746,\n                    \"DataType\": \"Boolean\",\n                    \"EntityDefAttributeName\": \"IsLostDay\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940462,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940462,\n                    \"InstanceId\": 50940747,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"LostDayCause\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportLostDayCause\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940463,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940463,\n                    \"InstanceId\": 50940748,\n                    \"EntityDefAttributeName\": \"LostDayDateDueOffset\",\n                    \"DataType\": \"Integer\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultInteger Value=\\\"0\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940464,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940464,\n                    \"InstanceId\": 50940749,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeDue\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940465,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940465,\n                    \"InstanceId\": 50940750,\n                    \"DataType\": \"Date\",\n                    \"EntityDefAttributeName\": \"LostDayDateNoticeSent\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940466,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940466,\n                    \"InstanceId\": 50940751,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"LostDayDelayReporter\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940467,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940467,\n                    \"InstanceId\": 50940752,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"Notes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940468,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940468,\n                    \"InstanceId\": 50940753,\n                    \"DataType\": \"Lookup\",\n                    \"EntityDefAttributeName\": \"Shift\",\n                    \"LookupListName\": \"kahua_AEC_DailyReport.DailyReportShift\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940469,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:58:56.613\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 7,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940469,\n                    \"InstanceId\": 50940754,\n                    \"DataType\": \"Text\",\n                    \"EntityDefAttributeName\": \"WeatherNotes\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50940662,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940662,\n                    \"InstanceId\": 50940755,\n                    \"EntityDefAttributeName\": \"ShortLabel\",\n                    \"DataType\": \"TextTokenized\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940663,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940663,\n                    \"InstanceId\": 50940756,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"LongLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940664,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940664,\n                    \"InstanceId\": 50940757,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"DetailLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940665,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940665,\n                    \"InstanceId\": 50940758,\n                    \"DataType\": \"Entity\",\n                    \"LinkedEntityDefName\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"EntityDefAttributeName\": \"CreatedBy\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultEntity Text=\\\"[CurrentUser]\\\">\\r\\n    <Key />\\r\\n  </DefaultEntity>\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940666,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940666,\n                    \"InstanceId\": 50940759,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"AppNameLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[DailyReportAppNameLabel]\\\" />\\r\\n</DefaultValue>\"\n                },\n                {\n                    \"id\": 50940667,\n                    \"entityDef\": \"kahua_Core.kahua_EntityAttributeConfig\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"IsRequired\": false,\n                    \"IsXMLValue\": false,\n                    \"CreatedDateTime\": \"2025-07-22T22:16:34.380\",\n                    \"ModifiedDateTime\": \"2025-07-22T22:20:09.550\",\n                    \"Instance\": 3,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940667,\n                    \"InstanceId\": 50940760,\n                    \"DataType\": \"TextTokenized\",\n                    \"EntityDefAttributeName\": \"RecycleBinLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\",\n                    \"DefaultValue\": \"<DefaultValue>\\r\\n  <DefaultText Text=\\\"[EntityDefLabel]: [Attribute(Path=Date, Format=d)]\\\" Type=\\\"SmartString\\\" />\\r\\n</DefaultValue>\"\n                }\n            ]\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                }
              ]
            },
            {
              "name": "5.2.10: (QRY) Get Fields Configuration",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.DataTagConfiguration\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // To query for a specific app, use:\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"AppName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_AEC_DailyReport\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"DataTags\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "This query returns the labels from the \"Fields\" tab in the Configuration app.\n\nSee 5.2.6 for more information on how to use this query."
              },
              "response": [
                {
                  "name": "Get Daily Report Fields",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.DataTagConfiguration\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"AppName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_AEC_DailyReport\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"DataTags\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "202011"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "79"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:45:42 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50944611,\n            \"entityDef\": \"kahua_Core.DataTagConfiguration\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n            \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"PortableViewInstance\": 1,\n            \"Instance\": 1,\n            \"Id\": 50944611,\n            \"InstanceId\": 50944611,\n            \"AppName\": \"kahua_AEC_DailyReport\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DataTags\": [\n                {\n                    \"id\": 50944612,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"PartitionId\": 0,\n                    \"DomainPartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944612,\n                    \"InstanceId\": 50944612,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"Name\": \"FieldReportDateLabel\",\n                    \"CultureLabelKey\": \"FieldReportDateLabel\",\n                    \"Label\": \"[FieldReportDateLabel]\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequiredLocked\": \"True\",\n                    \"IsRequired\": \"True\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944613,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944613,\n                    \"InstanceId\": 50944613,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"Name\": \"DailyReportInternalLaborTracking_Employee\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_EmployeeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_EmployeeLabel\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsRequired\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944614,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944614,\n                    \"InstanceId\": 50944614,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"DailyReportInternalLaborTracking_EmployeeID\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_EmployeeIDLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_EmployeeIDLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944615,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944615,\n                    \"InstanceId\": 50944615,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTrackingName\",\n                    \"Label\": \"[FieldInternalLaborTrackingNameLabel]\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTrackingNameLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944616,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944616,\n                    \"InstanceId\": 50944616,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"PortableViewTemplate\",\n                    \"CultureLabelKey\": \"PortableViewTemplate\",\n                    \"Label\": \"[PortableViewTemplate]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944617,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944617,\n                    \"InstanceId\": 50944617,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionCompanyDetailsLabel\",\n                    \"Label\": \"[AnchorSectionCompanyDetailsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionCompanyDetailsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944618,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944618,\n                    \"InstanceId\": 50944618,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionCompaniesLabel\",\n                    \"Label\": \"[AnchorSectionCompaniesLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionCompaniesLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944619,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944619,\n                    \"InstanceId\": 50944619,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"AnchorSectionInternalDailySurveyLabel\",\n                    \"Label\": \"[AnchorSectionInternalDailySurveyLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionInternalDailySurveyLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944620,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944620,\n                    \"InstanceId\": 50944620,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionDetailsLabelGC\",\n                    \"Label\": \"[AnchorSectionDetailsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionDetailsLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944621,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944621,\n                    \"InstanceId\": 50944621,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionEquipmentLabelGC\",\n                    \"Label\": \"[AnchorSectionEquipmentLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionEquipmentLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944622,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944622,\n                    \"InstanceId\": 50944622,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"AnchorSectionFieldObservationsLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionFieldObservationsLabel\",\n                    \"Label\": \"[AnchorSectionFieldObservationsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944623,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944623,\n                    \"InstanceId\": 50944623,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionIncidentsLabel\",\n                    \"Label\": \"[AnchorSectionIncidentsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionIncidentsCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944624,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944624,\n                    \"InstanceId\": 50944624,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"AnchorSectionInternalLaborTrackingLabel\",\n                    \"Label\": \"[AnchorSectionInternalLaborTrackingLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionInternalLaborTrackingLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944625,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944625,\n                    \"InstanceId\": 50944625,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionLaborTypeLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionLaborTypeLabel\",\n                    \"Label\": \"[AnchorSectionLaborTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944626,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944626,\n                    \"InstanceId\": 50944626,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionMaterialReceivedLabelGC\",\n                    \"Label\": \"[AnchorSectionMaterialReceivedLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionMaterialReceivedCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944627,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944627,\n                    \"InstanceId\": 50944627,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionMediaLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaLabel\",\n                    \"Label\": \"[AnchorSectionMediaLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944628,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944628,\n                    \"InstanceId\": 50944628,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionDetailsLabel]\",\n                    \"Name\": \"AnchorSectionMediaPanelDetailsLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaPanelDetailsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944629,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944629,\n                    \"InstanceId\": 50944629,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionMediaLabel]\",\n                    \"Name\": \"AnchorSectionMediaPanelMediaLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944630,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944630,\n                    \"InstanceId\": 50944630,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionMediaPanelCommentsLabel\",\n                    \"Label\": \"[AnchorSectionCommentsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaPanelCommentsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944631,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944631,\n                    \"InstanceId\": 50944631,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionNotesAndWorkCompletedLabel\",\n                    \"Label\": \"[AnchorSectionNotesAndWorkCompletedLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionNotesAndWorkCompletedCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944632,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944632,\n                    \"InstanceId\": 50944632,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionDetailsLabel]\",\n                    \"Name\": \"AnchorSectionNotesAndWorkCompletedDetailsLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionNotesAndWorkCompletedDetailsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944633,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944633,\n                    \"InstanceId\": 50944633,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionReferencesLabel\",\n                    \"Label\": \"[AnchorSectionReferencesLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionReferencesLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944634,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944634,\n                    \"InstanceId\": 50944634,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionReferencesLabel]\",\n                    \"Name\": \"AnchorSectionReferencesNotesLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionReferencesNotesLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944635,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944635,\n                    \"InstanceId\": 50944635,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionSignatureLabel\",\n                    \"Label\": \"[DailyReports_SignaturesSection_Label]\",\n                    \"CultureLabelKey\": \"DailyReports_SignaturesSection_LabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944636,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944636,\n                    \"InstanceId\": 50944636,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionVisitorsLabel\",\n                    \"Label\": \"[AnchorSectionVisitorsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionVisitorsCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944637,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944637,\n                    \"InstanceId\": 50944637,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionWeatherLabel\",\n                    \"Label\": \"[AnchorSectionWeatherLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionWeatherLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944638,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944638,\n                    \"InstanceId\": 50944638,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeAreaLabel\",\n                    \"CultureLabelKey\": \"AttributeAreaLabel\",\n                    \"Label\": \"[AttributeAreaLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944639,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944639,\n                    \"InstanceId\": 50944639,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeDescriptionLabel\",\n                    \"CultureLabelKey\": \"AttributeDescriptionLabel\",\n                    \"Label\": \"[AttributeDescriptionLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944640,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944640,\n                    \"InstanceId\": 50944640,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeDescriptionLabelCapitalized\",\n                    \"CultureLabelKey\": \"AttributeDescriptionLabelCapitalized\",\n                    \"Label\": \"[AttributeDescriptionLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944641,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944641,\n                    \"InstanceId\": 50944641,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIncidentTypeLabel\",\n                    \"CultureLabelKey\": \"AttributeIncidentTypeLabel\",\n                    \"Label\": \"[AttributeIncidentTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944642,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944642,\n                    \"InstanceId\": 50944642,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIncidentDescriptionLabel\",\n                    \"CultureLabelKey\": \"AttributeIncidentDescriptionLabel\",\n                    \"Label\": \"[AttributeIncidentDescriptionLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944643,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944643,\n                    \"InstanceId\": 50944643,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIncidentAreaLabel\",\n                    \"CultureLabelKey\": \"AttributeIncidentAreaLabel\",\n                    \"Label\": \"[AttributeIncidentAreaLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944644,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944644,\n                    \"InstanceId\": 50944644,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIndividualNameLabel\",\n                    \"CultureLabelKey\": \"AttributeIndividualNameLabel\",\n                    \"Label\": \"[AttributeIndividualNameLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944645,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944645,\n                    \"InstanceId\": 50944645,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeNotesLabel\",\n                    \"CultureLabelKey\": \"AttributeNotesLabel\",\n                    \"Label\": \"[AttributeNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944646,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944646,\n                    \"InstanceId\": 50944646,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeTotalInternalLabor\",\n                    \"Label\": \"[AttributeTotalInternalLaborLabel]\",\n                    \"CultureLabelKey\": \"AttributeTotalInternalLaborLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944647,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944647,\n                    \"InstanceId\": 50944647,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeLaborSummaryRowOnlyLabel\",\n                    \"CultureLabelKey\": \"AttributeLaborSummaryRowOnlyLabel\",\n                    \"Label\": \"[AttributeLaborSummaryRowOnlyLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944648,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944648,\n                    \"InstanceId\": 50944648,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeUnitOfMeasurementLabel\",\n                    \"CultureLabelKey\": \"AttributeUnitOfMeasurementLabel\",\n                    \"Label\": \"[AttributeUnitOfMeasurementLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944649,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944649,\n                    \"InstanceId\": 50944649,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeUnitOfMeasurementLabelCapitalized\",\n                    \"Label\": \"[AttributeUnitOfMeasurementLabelCapitalized]\",\n                    \"CultureLabelKey\": \"AttributeUnitOfMeasurementCultureKeyCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944650,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944650,\n                    \"InstanceId\": 50944650,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeVisitorNameLabel\",\n                    \"CultureLabelKey\": \"AttributeVisitorNameLabel\",\n                    \"Label\": \"[AttributeVisitorNameLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944651,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944651,\n                    \"InstanceId\": 50944651,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeVisitorNotesLabel\",\n                    \"CultureLabelKey\": \"AttributeVisitorNotesLabel\",\n                    \"Label\": \"[AttributeVisitorNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944652,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944652,\n                    \"InstanceId\": 50944652,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportCompany_ActivityCode\",\n                    \"Label\": \"[DailyReportCompany_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportCompany_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944653,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944653,\n                    \"InstanceId\": 50944653,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportCompany_CostCode\",\n                    \"Label\": \"[DailyReportCompany_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportCompany_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944654,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944654,\n                    \"InstanceId\": 50944654,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportEquipment_ActivityCode\",\n                    \"Label\": \"[DailyReportEquipment_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportEquipment_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944655,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944655,\n                    \"InstanceId\": 50944655,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportEquipment_CostCode\",\n                    \"Label\": \"[DailyReportEquipment_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportEquipment_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944656,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944656,\n                    \"InstanceId\": 50944656,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportFieldObservations_FieldObservations\",\n                    \"Label\": \"[DailyReportFieldObservations_FieldObservationsLabel]\",\n                    \"CultureLabelKey\": \"DailyReportFieldObservations_FieldObservationsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944657,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944657,\n                    \"InstanceId\": 50944657,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_FieldObservations\",\n                    \"Label\": \"[DailyReport_FieldObservationsLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_FieldObservationsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944658,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944658,\n                    \"InstanceId\": 50944658,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_ActivityCode\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944659,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944659,\n                    \"InstanceId\": 50944659,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_CostCode\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944660,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944660,\n                    \"InstanceId\": 50944660,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_EmployeeCapitalized\",\n                    \"Label\": \"[FieldInternalLaborEmployeeCapitalized]\",\n                    \"CultureLabelKey\": \"FieldInternalLaborEmployeeCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944661,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944661,\n                    \"InstanceId\": 50944661,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_EmployeeProfile\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_EmployeeProfileLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_EmployeeProfileLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944662,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944662,\n                    \"InstanceId\": 50944662,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportMaterialsReceived_ActivityCode\",\n                    \"Label\": \"[DailyReportMaterialsReceived_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportMaterialsReceived_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944663,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944663,\n                    \"InstanceId\": 50944663,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportMaterialsReceived_CostCode\",\n                    \"Label\": \"[DailyReportMaterialsReceived_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportMaterialsReceived_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944664,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944664,\n                    \"InstanceId\": 50944664,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_Notes\",\n                    \"Label\": \"[DailyReport_NotesLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_NotesLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944665,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944665,\n                    \"InstanceId\": 50944665,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportNotes_Description\",\n                    \"Label\": \"[DailyReportNotes_DescriptionLabel]\",\n                    \"CultureLabelKey\": \"DailyReportNotes_DescriptionDescription\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944666,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944666,\n                    \"InstanceId\": 50944666,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportNotes_Category\",\n                    \"Label\": \"[DailyReportNotes_CategoryLabel]\",\n                    \"CultureLabelKey\": \"DailyReportNotes_CategoryLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944667,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944667,\n                    \"InstanceId\": 50944667,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportNotes_Area\",\n                    \"Label\": \"[DailyReportNotes_AreaLabel]\",\n                    \"CultureLabelKey\": \"DailyReportNotes_AreaLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944668,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944668,\n                    \"InstanceId\": 50944668,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAddWeatherOnSaveLabel\",\n                    \"CultureLabelKey\": \"FieldAddWeatherOnSaveLabel\",\n                    \"Label\": \"[FieldAddWeatherOnSaveLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944669,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944669,\n                    \"InstanceId\": 50944669,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAreaUsedLabel\",\n                    \"CultureLabelKey\": \"FieldAreaUsedLabel\",\n                    \"Label\": \"[FieldAreaUsedLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944670,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944670,\n                    \"InstanceId\": 50944670,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAreaUsedLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldAreaUsedLabelCapitalized\",\n                    \"Label\": \"[FieldAreaUsedLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944671,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944671,\n                    \"InstanceId\": 50944671,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAssetNumberLabel\",\n                    \"CultureLabelKey\": \"FieldAssetNumberLabel\",\n                    \"Label\": \"[FieldAssetNumberLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944672,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944672,\n                    \"InstanceId\": 50944672,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAssetNumberLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldAssetNumberLabelCapitalized\",\n                    \"Label\": \"[FieldAssetNumberLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944673,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:17:46.857\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944673,\n                    \"InstanceId\": 50944801,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAuthorLabel\",\n                    \"CultureLabelKey\": \"FieldAuthorLabel\",\n                    \"Label\": \"Hello World\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944674,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944674,\n                    \"InstanceId\": 50944674,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompanyLabel\",\n                    \"CultureLabelKey\": \"FieldCompanyLabel\",\n                    \"Label\": \"[FieldCompanyLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944675,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944675,\n                    \"InstanceId\": 50944675,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompanyLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldCompanyLabelCapitalized\",\n                    \"Label\": \"[FieldCompanyLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944676,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944676,\n                    \"InstanceId\": 50944676,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompanyLaborTypeLabel\",\n                    \"CultureLabelKey\": \"FieldCompanyLaborTypeLabel\",\n                    \"Label\": \"[FieldCompanyLaborTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944677,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944677,\n                    \"InstanceId\": 50944677,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompaniesLabel\",\n                    \"CultureLabelKey\": \"FieldCompaniesLabel\",\n                    \"Label\": \"[FieldCompaniesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944678,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944678,\n                    \"InstanceId\": 50944678,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldCostCode\",\n                    \"Label\": \"[FieldCostCodeLabel]\",\n                    \"CultureLabelKey\": \"FieldCostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944679,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944679,\n                    \"InstanceId\": 50944679,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCountedWorkersControl\",\n                    \"CultureLabelKey\": \"FieldCountedWorkersControl\",\n                    \"Label\": \"[FieldCountedWorkersControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944680,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944680,\n                    \"InstanceId\": 50944680,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCountedWorkersCapitalized\",\n                    \"CultureLabelKey\": \"FieldCountedWorkersCapitalized\",\n                    \"Label\": \"[FieldCountedWorkersCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944681,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944681,\n                    \"InstanceId\": 50944681,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldDailyReportNumber\",\n                    \"Label\": \"[FieldDailyReportNumberLabel]\",\n                    \"CultureLabelKey\": \"FieldDailyReportNumberLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944682,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944682,\n                    \"InstanceId\": 50944682,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldDefaultShiftLengthLabel\",\n                    \"CultureLabelKey\": \"FieldDefaultShiftLengthLabel\",\n                    \"Label\": \"[FieldDefaultShiftLengthLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944683,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944683,\n                    \"InstanceId\": 50944683,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldDefaultShiftLengthCapsLabel\",\n                    \"CultureLabelKey\": \"FieldDefaultShiftLengthCapsLabel\",\n                    \"Label\": \"[FieldDefaultShiftLengthCapsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944684,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944684,\n                    \"InstanceId\": 50944684,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldEquipmentItemLabel\",\n                    \"CultureLabelKey\": \"FieldEquipmentItemLabel\",\n                    \"Label\": \"[FieldEquipmentItemLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944685,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944685,\n                    \"InstanceId\": 50944685,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldEquipmentItemLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldEquipmentItemLabelCapitalized\",\n                    \"Label\": \"[FieldEquipmentItemLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944686,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944686,\n                    \"InstanceId\": 50944686,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldEquipmentNotesLabel\",\n                    \"Label\": \"[FieldEquipmentNotesLabel]\",\n                    \"CultureLabelKey\": \"FieldEquipmentNotesCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944687,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944687,\n                    \"InstanceId\": 50944687,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborActivityCodeCapitalized\",\n                    \"CultureLabelKey\": \"FieldInternalLaborActivityCodeCapitalized\",\n                    \"Label\": \"[FieldInternalLaborActivityCodeCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944688,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944688,\n                    \"InstanceId\": 50944688,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTotal\",\n                    \"Label\": \"[FieldInternalLaborTotalLabel]\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTotalLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944689,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944689,\n                    \"InstanceId\": 50944689,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTotalCapitalized\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTotalCapitalized\",\n                    \"Label\": \"[FieldInternalLaborTotalCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944690,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944690,\n                    \"InstanceId\": 50944690,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTrackingNameCapitalized\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTrackingNameCapitalized\",\n                    \"Label\": \"[FieldInternalLaborTrackingNameCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944691,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944691,\n                    \"InstanceId\": 50944691,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldIsLostDayLabel\",\n                    \"CultureLabelKey\": \"FieldIsLostDayLabel\",\n                    \"Label\": \"[FieldIsLostDayLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944692,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944692,\n                    \"InstanceId\": 50944692,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeTotalUnitsCapitalized\",\n                    \"CultureLabelKey\": \"FieldLaborTypeTotalUnitsCapitalized\",\n                    \"Label\": \"[FieldLaborTypeTotalUnitsCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944693,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944693,\n                    \"InstanceId\": 50944693,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeLabel\",\n                    \"CultureLabelKey\": \"FieldLaborTypeLabel\",\n                    \"Label\": \"[FieldLaborTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944694,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944694,\n                    \"InstanceId\": 50944694,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeLaborUnits\",\n                    \"CultureLabelKey\": \"FieldLaborTypeLaborUnits\",\n                    \"Label\": \"[FieldLaborTypeLaborUnits]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944695,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944695,\n                    \"InstanceId\": 50944695,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeReportedWorkers\",\n                    \"CultureLabelKey\": \"FieldLaborTypeReportedWorkers\",\n                    \"Label\": \"[FieldLaborTypeReportedWorkers]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944696,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944696,\n                    \"InstanceId\": 50944696,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeCountedWorkers\",\n                    \"CultureLabelKey\": \"FieldLaborTypeCountedWorkers\",\n                    \"Label\": \"[FieldLaborTypeCountedWorkers]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944697,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944697,\n                    \"InstanceId\": 50944697,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeClassification\",\n                    \"Label\": \"[FieldLaborClassificationLabel]\",\n                    \"CultureLabelKey\": \"FieldLaborClassificationLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944698,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944698,\n                    \"InstanceId\": 50944698,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborUnitsControl\",\n                    \"Label\": \"[FieldLaborUnitsControl]\",\n                    \"CultureLabelKey\": \"FieldLaborUnitsControlCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944699,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944699,\n                    \"InstanceId\": 50944699,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayCauseLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayCauseLabel\",\n                    \"Label\": \"[FieldLostDayCauseLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944700,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944700,\n                    \"InstanceId\": 50944700,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDateNoticeDueLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDateNoticeDueLabel\",\n                    \"Label\": \"[FieldLostDayDateNoticeDueLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944701,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944701,\n                    \"InstanceId\": 50944701,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDateDueOffsetLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDateDueOffsetLabel\",\n                    \"Label\": \"[FieldLostDayDateDueOffsetLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944702,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944702,\n                    \"InstanceId\": 50944702,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDateNoticeSentLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDateNoticeSentLabel\",\n                    \"Label\": \"[FieldLostDayDateNoticeSentLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944703,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944703,\n                    \"InstanceId\": 50944703,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDelayReporterLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDelayReporterLabel\",\n                    \"Label\": \"[FieldLostDayDelayReporterLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944704,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944704,\n                    \"InstanceId\": 50944704,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldMaterialReceivedNotesLabel\",\n                    \"Label\": \"[FieldMaterialReceivedNotesLabel]\",\n                    \"CultureLabelKey\": \"FieldMaterialReceivedNotesCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944705,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944705,\n                    \"InstanceId\": 50944705,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldNotesLabel\",\n                    \"CultureLabelKey\": \"FieldNotesLabel\",\n                    \"Label\": \"[FieldNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944706,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944706,\n                    \"InstanceId\": 50944706,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldNumberLabel\",\n                    \"CultureLabelKey\": \"FieldNumberLabel\",\n                    \"Label\": \"[FieldNumberLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944707,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944707,\n                    \"InstanceId\": 50944707,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservationNumberLabel\",\n                    \"Label\": \"[FieldObservationNumberLabel]\",\n                    \"CultureLabelKey\": \"FieldObservationNumberCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944708,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944708,\n                    \"InstanceId\": 50944708,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservationSubjectLabel\",\n                    \"Label\": \"[FieldObservationSubjectLabel]\",\n                    \"CultureLabelKey\": \"FieldObservationSubjectCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944709,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944709,\n                    \"InstanceId\": 50944709,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservationObservedByLabel\",\n                    \"Label\": \"[FieldObservationObservedByLabel]\",\n                    \"CultureLabelKey\": \"FieldObservationObservedByCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944710,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944710,\n                    \"InstanceId\": 50944710,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservedByLabel\",\n                    \"CultureLabelKey\": \"FieldObservedByLabel\",\n                    \"Label\": \"[FieldObservedByLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944711,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944711,\n                    \"InstanceId\": 50944711,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldOvertimeLabel\",\n                    \"CultureLabelKey\": \"FieldOvertimeLabel\",\n                    \"Label\": \"[FieldOvertimeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944712,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944712,\n                    \"InstanceId\": 50944712,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldOvertimeLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldOvertimeLabelCapitalized\",\n                    \"Label\": \"[FieldOvertimeLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944713,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944713,\n                    \"InstanceId\": 50944713,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldPrecipitationInchesLabel\",\n                    \"CultureLabelKey\": \"FieldPrecipitationInchesLabel\",\n                    \"Label\": \"[FieldPrecipitationInchesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944714,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944714,\n                    \"InstanceId\": 50944714,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldQuantityReceivedLabel\",\n                    \"CultureLabelKey\": \"FieldQuantityReceivedLabel\",\n                    \"Label\": \"[FieldQuantityReceivedLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944715,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944715,\n                    \"InstanceId\": 50944715,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldQuantityReceivedLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldQuantityReceivedLabelCapitalized\",\n                    \"Label\": \"[FieldQuantityReceivedLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944716,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944716,\n                    \"InstanceId\": 50944716,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton1Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton1Label\",\n                    \"Label\": \"[FieldRadioButton1Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944717,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944717,\n                    \"InstanceId\": 50944717,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton2Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton2Label\",\n                    \"Label\": \"[FieldRadioButton2Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944718,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944718,\n                    \"InstanceId\": 50944718,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton3Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton3Label\",\n                    \"Label\": \"[FieldRadioButton3Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944719,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944719,\n                    \"InstanceId\": 50944719,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton4Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton4Label\",\n                    \"Label\": \"[FieldRadioButton4Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944720,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944720,\n                    \"InstanceId\": 50944720,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton5Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton5Label\",\n                    \"Label\": \"[FieldRadioButton5Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944721,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944721,\n                    \"InstanceId\": 50944721,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton6Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton6Label\",\n                    \"Label\": \"[FieldRadioButton6Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944722,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944722,\n                    \"InstanceId\": 50944722,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton7Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton7Label\",\n                    \"Label\": \"[FieldRadioButton7Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944723,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944723,\n                    \"InstanceId\": 50944723,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton8Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton8Label\",\n                    \"Label\": \"[FieldRadioButton8Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944724,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944724,\n                    \"InstanceId\": 50944724,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton9Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton9Label\",\n                    \"Label\": \"[FieldRadioButton9Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944725,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944725,\n                    \"InstanceId\": 50944725,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton10Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton10Label\",\n                    \"Label\": \"[FieldRadioButton10Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944726,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944726,\n                    \"InstanceId\": 50944726,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton11Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton11Label\",\n                    \"Label\": \"[FieldRadioButton11Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944727,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944727,\n                    \"InstanceId\": 50944727,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton12Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton12Label\",\n                    \"Label\": \"[FieldRadioButton12Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944728,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944728,\n                    \"InstanceId\": 50944728,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton13Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton13Label\",\n                    \"Label\": \"[FieldRadioButton13Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944729,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944729,\n                    \"InstanceId\": 50944729,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton14Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton14Label\",\n                    \"Label\": \"[FieldRadioButton14Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944730,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944730,\n                    \"InstanceId\": 50944730,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton15Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton15Label\",\n                    \"Label\": \"[FieldRadioButton15Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944731,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944731,\n                    \"InstanceId\": 50944731,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton16Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton16Label\",\n                    \"Label\": \"[FieldRadioButton16Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944732,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944732,\n                    \"InstanceId\": 50944732,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton17Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton17Label\",\n                    \"Label\": \"[FieldRadioButton17Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944733,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944733,\n                    \"InstanceId\": 50944733,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton18Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton18Label\",\n                    \"Label\": \"[FieldRadioButton18Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944734,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944734,\n                    \"InstanceId\": 50944734,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton19Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton19Label\",\n                    \"Label\": \"[FieldRadioButton19Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944735,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944735,\n                    \"InstanceId\": 50944735,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton20Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton20Label\",\n                    \"Label\": \"[FieldRadioButton20Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944736,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944736,\n                    \"InstanceId\": 50944736,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReadingLabel\",\n                    \"CultureLabelKey\": \"FieldReadingLabel\",\n                    \"Label\": \"[FieldReadingLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944737,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944737,\n                    \"InstanceId\": 50944737,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReadingLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldReadingLabelCapitalized\",\n                    \"Label\": \"[FieldReadingLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944738,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944738,\n                    \"InstanceId\": 50944738,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReferencesLabel\",\n                    \"CultureLabelKey\": \"FieldReferencesLabel\",\n                    \"Label\": \"[FieldReferencesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944739,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944739,\n                    \"InstanceId\": 50944739,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportContactLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldReportContactLabelCapitalized\",\n                    \"Label\": \"[FieldReportContactLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944740,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944740,\n                    \"InstanceId\": 50944740,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportedWorkersCapitalized\",\n                    \"CultureLabelKey\": \"FieldReportedWorkersCapitalized\",\n                    \"Label\": \"[FieldReportedWorkersCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944741,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944741,\n                    \"InstanceId\": 50944741,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportedWorkersControl\",\n                    \"CultureLabelKey\": \"FieldReportedWorkersControl\",\n                    \"Label\": \"[FieldReportedWorkersControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944742,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944742,\n                    \"InstanceId\": 50944742,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportContactLabel\",\n                    \"CultureLabelKey\": \"FieldReportContactLabel\",\n                    \"Label\": \"[FieldReportContactLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944743,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944743,\n                    \"InstanceId\": 50944743,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSearchLabel\",\n                    \"CultureLabelKey\": \"FieldSearchLabel\",\n                    \"Label\": \"[FieldSearchLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944744,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944744,\n                    \"InstanceId\": 50944744,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldShiftLabel\",\n                    \"CultureLabelKey\": \"FieldShiftLabel\",\n                    \"Label\": \"[FieldShiftLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944745,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944745,\n                    \"InstanceId\": 50944745,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSignatureDateTime\",\n                    \"Label\": \"[SignatureDateTimeLabel]\",\n                    \"CultureLabelKey\": \"SignatureDateTimeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944746,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944746,\n                    \"InstanceId\": 50944746,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSignatureRole\",\n                    \"CultureLabelKey\": \"FieldSignatureRole\",\n                    \"Label\": \"[FieldSignatureRole]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944747,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944747,\n                    \"InstanceId\": 50944747,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStatusLabel\",\n                    \"Label\": \"[FieldStatusLabel]\",\n                    \"CultureLabelKey\": \"FieldStatusLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944748,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944748,\n                    \"InstanceId\": 50944748,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStatusLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldStatusLabelCapitalized\",\n                    \"Label\": \"[FieldStatusLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944749,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944749,\n                    \"InstanceId\": 50944749,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[FieldStatusLabel]\",\n                    \"Name\": \"FieldStatusWorkflowLabel\",\n                    \"CultureLabelKey\": \"FieldStatusWorkflowLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944750,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944750,\n                    \"InstanceId\": 50944750,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStepLabel\",\n                    \"CultureLabelKey\": \"FieldStepLabel\",\n                    \"Label\": \"[FieldStepLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944751,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944751,\n                    \"InstanceId\": 50944751,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStraightTimeLabel\",\n                    \"CultureLabelKey\": \"FieldStraightTimeLabel\",\n                    \"Label\": \"[FieldStraightTimeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944752,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944752,\n                    \"InstanceId\": 50944752,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStraightTimeLabelCapitalized\",\n                    \"Label\": \"[FieldStraightTimeLabelCapitalized]\",\n                    \"CultureLabelKey\": \"FieldStraightTimeLabelCapitalizedCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944753,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944753,\n                    \"InstanceId\": 50944753,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSubjectLabel\",\n                    \"CultureLabelKey\": \"FieldSubjectLabel\",\n                    \"Label\": \"[FieldSubjectLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944754,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944754,\n                    \"InstanceId\": 50944754,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTemperatureFLabel\",\n                    \"CultureLabelKey\": \"FieldTemperatureFLabel\",\n                    \"Label\": \"[FieldTemperatureFLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944755,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944755,\n                    \"InstanceId\": 50944755,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTimeLabel\",\n                    \"CultureLabelKey\": \"FieldTimeLabel\",\n                    \"Label\": \"[FieldTimeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944756,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944756,\n                    \"InstanceId\": 50944756,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTotalLabel\",\n                    \"CultureLabelKey\": \"FieldTotalLabel\",\n                    \"Label\": \"[FieldTotalLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944757,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944757,\n                    \"InstanceId\": 50944757,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTotalLaborUnitsLabel\",\n                    \"CultureLabelKey\": \"FieldTotalLaborUnitsLabel\",\n                    \"Label\": \"[FieldTotalLaborUnitsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944758,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944758,\n                    \"InstanceId\": 50944758,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTransmitLabel\",\n                    \"CultureLabelKey\": \"FieldTransmitLabel\",\n                    \"Label\": \"[FieldTransmitLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944759,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944759,\n                    \"InstanceId\": 50944759,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldVisitorsLabel\",\n                    \"CultureLabelKey\": \"FieldVisitorsLabel\",\n                    \"Label\": \"[FieldVisitorsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944760,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944760,\n                    \"InstanceId\": 50944760,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWeatherNotesLabel\",\n                    \"CultureLabelKey\": \"FieldWeatherNotesLabel\",\n                    \"Label\": \"[FieldWeatherNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944761,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944761,\n                    \"InstanceId\": 50944761,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkersLabel\",\n                    \"CultureLabelKey\": \"FieldWorkersLabel\",\n                    \"Label\": \"[FieldWorkersLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944762,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944762,\n                    \"InstanceId\": 50944762,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationLabel\",\n                    \"Label\": \"[FieldWorkLocationLabel]\",\n                    \"CultureLabelKey\": \"FieldWorkLocationLabelCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944763,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944763,\n                    \"InstanceId\": 50944763,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationCapitalized\",\n                    \"CultureLabelKey\": \"FieldWorkLocationCapitalized\",\n                    \"Label\": \"[FieldWorkLocationCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944764,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944764,\n                    \"InstanceId\": 50944764,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationCompanyLabel\",\n                    \"Label\": \"[FieldWorkLocationCompanyLabel]\",\n                    \"CultureLabelKey\": \"FieldWorkLocationCompanyLabelCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944765,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944765,\n                    \"InstanceId\": 50944765,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationMaterialReceivedLabel\",\n                    \"Label\": \"[FieldWorkLocationMaterialReceivedLabel]\",\n                    \"CultureLabelKey\": \"FieldWorkLocationMaterialReceivedLabelCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944766,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944766,\n                    \"InstanceId\": 50944766,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"NonworkdayCheckboxLabel\",\n                    \"CultureLabelKey\": \"NonworkdayCheckboxLabel\",\n                    \"Label\": \"[NonworkdayCheckboxLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944767,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944767,\n                    \"InstanceId\": 50944767,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"SignatureContactLabel\",\n                    \"CultureLabelKey\": \"SignatureContactLabel\",\n                    \"Label\": \"[SignatureContactLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944768,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944768,\n                    \"InstanceId\": 50944768,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[SignatureDateTimeLabel]\",\n                    \"CultureLabelKey\": \"SignatureDateTimeLabel\",\n                    \"Name\": \"SignatureDateTimeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944769,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944769,\n                    \"InstanceId\": 50944769,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewAreaUsedLabel\",\n                    \"CultureLabelKey\": \"ViewAreaUsedLabel\",\n                    \"Label\": \"[ViewAreaUsedLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944770,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944770,\n                    \"InstanceId\": 50944770,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewAssetNumberControl\",\n                    \"CultureLabelKey\": \"ViewAssetNumberControl\",\n                    \"Label\": \"[ViewAssetNumberControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944771,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944771,\n                    \"InstanceId\": 50944771,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewEquipmentItemControl\",\n                    \"CultureLabelKey\": \"ViewEquipmentItemControl\",\n                    \"Label\": \"[ViewEquipmentItemControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944772,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944772,\n                    \"InstanceId\": 50944772,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewReadingControl\",\n                    \"CultureLabelKey\": \"ViewReadingControl\",\n                    \"Label\": \"[ViewReadingControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944773,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944773,\n                    \"InstanceId\": 50944773,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewWorkDescriptionControl\",\n                    \"CultureLabelKey\": \"ViewWorkDescriptionControl\",\n                    \"Label\": \"[ViewWorkDescriptionControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944774,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944774,\n                    \"InstanceId\": 50944774,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_TotalInternalWorkers\",\n                    \"Label\": \"[DailyReport_TotalInternalWorkersLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_TotalInternalWorkersLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944775,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944775,\n                    \"InstanceId\": 50944775,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_TotalInternalStraightTimeUnits\",\n                    \"Label\": \"[DailyReport_TotalInternalStraightTimeUnitsLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_TotalInternalStraightTimeUnitsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944776,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944776,\n                    \"InstanceId\": 50944776,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_TotalInternalOvertimeUnits\",\n                    \"Label\": \"[DailyReport_TotalInternalOvertimeUnitsLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_TotalInternalOvertimeUnitsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944777,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944777,\n                    \"InstanceId\": 50944777,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup1Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup1Label\",\n                    \"Label\": \"[FieldUniversalLookup1Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944778,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944778,\n                    \"InstanceId\": 50944778,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup2Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup2Label\",\n                    \"Label\": \"[FieldUniversalLookup2Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944779,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944779,\n                    \"InstanceId\": 50944779,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup3Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup3Label\",\n                    \"Label\": \"[FieldUniversalLookup3Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944780,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944780,\n                    \"InstanceId\": 50944780,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup4Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup4Label\",\n                    \"Label\": \"[FieldUniversalLookup4Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50944781,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"ModifiedDateTime\": \"2025-07-25T16:05:11.663\",\n                    \"DomainPartitionId\": 0,\n                    \"PartitionId\": 0,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"Id\": 50944781,\n                    \"InstanceId\": 50944781,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup5Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup5Label\",\n                    \"Label\": \"[FieldUniversalLookup5Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                }\n            ]\n        },\n        {\n            \"id\": 50941635,\n            \"entityDef\": \"kahua_Core.DataTagConfiguration\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"MarkupEnabled\": false,\n            \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n            \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n            \"Instance\": 1,\n            \"PortableViewInstance\": 1,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50941635,\n            \"InstanceId\": 50941635,\n            \"AppName\": \"kahua_AEC_DailyReport\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"DataTags\": [\n                {\n                    \"id\": 50941636,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941636,\n                    \"InstanceId\": 50941636,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"Name\": \"FieldReportDateLabel\",\n                    \"CultureLabelKey\": \"FieldReportDateLabel\",\n                    \"Label\": \"[FieldReportDateLabel]\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequiredLocked\": \"True\",\n                    \"IsRequired\": \"True\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941637,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941637,\n                    \"InstanceId\": 50941637,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"Name\": \"DailyReportInternalLaborTracking_Employee\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_EmployeeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_EmployeeLabel\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsRequired\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941638,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941638,\n                    \"InstanceId\": 50941638,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"DailyReportInternalLaborTracking_EmployeeID\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_EmployeeIDLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_EmployeeIDLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941639,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941639,\n                    \"InstanceId\": 50941639,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTrackingName\",\n                    \"Label\": \"[FieldInternalLaborTrackingNameLabel]\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTrackingNameLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941640,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941640,\n                    \"InstanceId\": 50941640,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"PortableViewTemplate\",\n                    \"CultureLabelKey\": \"PortableViewTemplate\",\n                    \"Label\": \"[PortableViewTemplate]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941641,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941641,\n                    \"InstanceId\": 50941641,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionCompanyDetailsLabel\",\n                    \"Label\": \"[AnchorSectionCompanyDetailsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionCompanyDetailsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941642,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941642,\n                    \"InstanceId\": 50941642,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionCompaniesLabel\",\n                    \"Label\": \"[AnchorSectionCompaniesLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionCompaniesLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941643,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941643,\n                    \"InstanceId\": 50941643,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"AnchorSectionInternalDailySurveyLabel\",\n                    \"Label\": \"[AnchorSectionInternalDailySurveyLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionInternalDailySurveyLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941644,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941644,\n                    \"InstanceId\": 50941644,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionDetailsLabelGC\",\n                    \"Label\": \"[AnchorSectionDetailsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionDetailsLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941645,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941645,\n                    \"InstanceId\": 50941645,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionEquipmentLabelGC\",\n                    \"Label\": \"[AnchorSectionEquipmentLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionEquipmentLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941646,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941646,\n                    \"InstanceId\": 50941646,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"AnchorSectionFieldObservationsLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionFieldObservationsLabel\",\n                    \"Label\": \"[AnchorSectionFieldObservationsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941647,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941647,\n                    \"InstanceId\": 50941647,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionIncidentsLabel\",\n                    \"Label\": \"[AnchorSectionIncidentsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionIncidentsCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941648,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941648,\n                    \"InstanceId\": 50941648,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"AnchorSectionInternalLaborTrackingLabel\",\n                    \"Label\": \"[AnchorSectionInternalLaborTrackingLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionInternalLaborTrackingLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941649,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941649,\n                    \"InstanceId\": 50941649,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionLaborTypeLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionLaborTypeLabel\",\n                    \"Label\": \"[AnchorSectionLaborTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941650,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941650,\n                    \"InstanceId\": 50941650,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionMaterialReceivedLabelGC\",\n                    \"Label\": \"[AnchorSectionMaterialReceivedLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionMaterialReceivedCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941651,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941651,\n                    \"InstanceId\": 50941651,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionMediaLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaLabel\",\n                    \"Label\": \"[AnchorSectionMediaLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941652,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941652,\n                    \"InstanceId\": 50941652,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionDetailsLabel]\",\n                    \"Name\": \"AnchorSectionMediaPanelDetailsLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaPanelDetailsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941653,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941653,\n                    \"InstanceId\": 50941653,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionMediaLabel]\",\n                    \"Name\": \"AnchorSectionMediaPanelMediaLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941654,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941654,\n                    \"InstanceId\": 50941654,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionMediaPanelCommentsLabel\",\n                    \"Label\": \"[AnchorSectionCommentsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionMediaPanelCommentsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941655,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941655,\n                    \"InstanceId\": 50941655,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionNotesAndWorkCompletedLabel\",\n                    \"Label\": \"[AnchorSectionNotesAndWorkCompletedLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionNotesAndWorkCompletedCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941656,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941656,\n                    \"InstanceId\": 50941656,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionDetailsLabel]\",\n                    \"Name\": \"AnchorSectionNotesAndWorkCompletedDetailsLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionNotesAndWorkCompletedDetailsLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941657,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941657,\n                    \"InstanceId\": 50941657,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionReferencesLabel\",\n                    \"Label\": \"[AnchorSectionReferencesLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionReferencesLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941658,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941658,\n                    \"InstanceId\": 50941658,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[AnchorSectionReferencesLabel]\",\n                    \"Name\": \"AnchorSectionReferencesNotesLabel\",\n                    \"CultureLabelKey\": \"AnchorSectionReferencesNotesLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941659,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941659,\n                    \"InstanceId\": 50941659,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionSignatureLabel\",\n                    \"Label\": \"[DailyReports_SignaturesSection_Label]\",\n                    \"CultureLabelKey\": \"DailyReports_SignaturesSection_LabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941660,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941660,\n                    \"InstanceId\": 50941660,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionVisitorsLabel\",\n                    \"Label\": \"[AnchorSectionVisitorsLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionVisitorsCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941661,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941661,\n                    \"InstanceId\": 50941661,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AnchorSectionWeatherLabel\",\n                    \"Label\": \"[AnchorSectionWeatherLabel]\",\n                    \"CultureLabelKey\": \"AnchorSectionWeatherLabelCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941662,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941662,\n                    \"InstanceId\": 50941662,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeAreaLabel\",\n                    \"CultureLabelKey\": \"AttributeAreaLabel\",\n                    \"Label\": \"[AttributeAreaLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941663,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941663,\n                    \"InstanceId\": 50941663,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeDescriptionLabel\",\n                    \"CultureLabelKey\": \"AttributeDescriptionLabel\",\n                    \"Label\": \"[AttributeDescriptionLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941664,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941664,\n                    \"InstanceId\": 50941664,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeDescriptionLabelCapitalized\",\n                    \"CultureLabelKey\": \"AttributeDescriptionLabelCapitalized\",\n                    \"Label\": \"[AttributeDescriptionLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941665,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941665,\n                    \"InstanceId\": 50941665,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIncidentTypeLabel\",\n                    \"CultureLabelKey\": \"AttributeIncidentTypeLabel\",\n                    \"Label\": \"[AttributeIncidentTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941666,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941666,\n                    \"InstanceId\": 50941666,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIncidentDescriptionLabel\",\n                    \"CultureLabelKey\": \"AttributeIncidentDescriptionLabel\",\n                    \"Label\": \"[AttributeIncidentDescriptionLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941667,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941667,\n                    \"InstanceId\": 50941667,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIncidentAreaLabel\",\n                    \"CultureLabelKey\": \"AttributeIncidentAreaLabel\",\n                    \"Label\": \"[AttributeIncidentAreaLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941668,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941668,\n                    \"InstanceId\": 50941668,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeIndividualNameLabel\",\n                    \"CultureLabelKey\": \"AttributeIndividualNameLabel\",\n                    \"Label\": \"[AttributeIndividualNameLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941669,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941669,\n                    \"InstanceId\": 50941669,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeNotesLabel\",\n                    \"CultureLabelKey\": \"AttributeNotesLabel\",\n                    \"Label\": \"[AttributeNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941670,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941670,\n                    \"InstanceId\": 50941670,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeTotalInternalLabor\",\n                    \"Label\": \"[AttributeTotalInternalLaborLabel]\",\n                    \"CultureLabelKey\": \"AttributeTotalInternalLaborLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941671,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941671,\n                    \"InstanceId\": 50941671,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeLaborSummaryRowOnlyLabel\",\n                    \"CultureLabelKey\": \"AttributeLaborSummaryRowOnlyLabel\",\n                    \"Label\": \"[AttributeLaborSummaryRowOnlyLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941672,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941672,\n                    \"InstanceId\": 50941672,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeUnitOfMeasurementLabel\",\n                    \"CultureLabelKey\": \"AttributeUnitOfMeasurementLabel\",\n                    \"Label\": \"[AttributeUnitOfMeasurementLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941673,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941673,\n                    \"InstanceId\": 50941673,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeUnitOfMeasurementLabelCapitalized\",\n                    \"Label\": \"[AttributeUnitOfMeasurementLabelCapitalized]\",\n                    \"CultureLabelKey\": \"AttributeUnitOfMeasurementCultureKeyCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941674,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941674,\n                    \"InstanceId\": 50941674,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeVisitorNameLabel\",\n                    \"CultureLabelKey\": \"AttributeVisitorNameLabel\",\n                    \"Label\": \"[AttributeVisitorNameLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941675,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941675,\n                    \"InstanceId\": 50941675,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"AttributeVisitorNotesLabel\",\n                    \"CultureLabelKey\": \"AttributeVisitorNotesLabel\",\n                    \"Label\": \"[AttributeVisitorNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941676,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941676,\n                    \"InstanceId\": 50941676,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportCompany_ActivityCode\",\n                    \"Label\": \"[DailyReportCompany_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportCompany_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941677,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941677,\n                    \"InstanceId\": 50941677,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportCompany_CostCode\",\n                    \"Label\": \"[DailyReportCompany_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportCompany_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941678,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941678,\n                    \"InstanceId\": 50941678,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportEquipment_ActivityCode\",\n                    \"Label\": \"[DailyReportEquipment_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportEquipment_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941679,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941679,\n                    \"InstanceId\": 50941679,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportEquipment_CostCode\",\n                    \"Label\": \"[DailyReportEquipment_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportEquipment_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941680,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941680,\n                    \"InstanceId\": 50941680,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportFieldObservations_FieldObservations\",\n                    \"Label\": \"[DailyReportFieldObservations_FieldObservationsLabel]\",\n                    \"CultureLabelKey\": \"DailyReportFieldObservations_FieldObservationsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941681,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941681,\n                    \"InstanceId\": 50941681,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_FieldObservations\",\n                    \"Label\": \"[DailyReport_FieldObservationsLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_FieldObservationsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941682,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941682,\n                    \"InstanceId\": 50941682,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_ActivityCode\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941683,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941683,\n                    \"InstanceId\": 50941683,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_CostCode\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941684,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941684,\n                    \"InstanceId\": 50941684,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_EmployeeCapitalized\",\n                    \"Label\": \"[FieldInternalLaborEmployeeCapitalized]\",\n                    \"CultureLabelKey\": \"FieldInternalLaborEmployeeCapitalized\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941685,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941685,\n                    \"InstanceId\": 50941685,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportInternalLaborTracking_EmployeeProfile\",\n                    \"Label\": \"[DailyReportInternalLaborTracking_EmployeeProfileLabel]\",\n                    \"CultureLabelKey\": \"DailyReportInternalLaborTracking_EmployeeProfileLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941686,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941686,\n                    \"InstanceId\": 50941686,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportMaterialsReceived_ActivityCode\",\n                    \"Label\": \"[DailyReportMaterialsReceived_ActivityCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportMaterialsReceived_ActivityCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941687,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941687,\n                    \"InstanceId\": 50941687,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportMaterialsReceived_CostCode\",\n                    \"Label\": \"[DailyReportMaterialsReceived_CostCodeLabel]\",\n                    \"CultureLabelKey\": \"DailyReportMaterialsReceived_CostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941688,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941688,\n                    \"InstanceId\": 50941688,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_Notes\",\n                    \"Label\": \"[DailyReport_NotesLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_NotesLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941689,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941689,\n                    \"InstanceId\": 50941689,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportNotes_Description\",\n                    \"Label\": \"[DailyReportNotes_DescriptionLabel]\",\n                    \"CultureLabelKey\": \"DailyReportNotes_DescriptionDescription\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941690,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941690,\n                    \"InstanceId\": 50941690,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportNotes_Category\",\n                    \"Label\": \"[DailyReportNotes_CategoryLabel]\",\n                    \"CultureLabelKey\": \"DailyReportNotes_CategoryLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941691,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941691,\n                    \"InstanceId\": 50941691,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReportNotes_Area\",\n                    \"Label\": \"[DailyReportNotes_AreaLabel]\",\n                    \"CultureLabelKey\": \"DailyReportNotes_AreaLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941692,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941692,\n                    \"InstanceId\": 50941692,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAddWeatherOnSaveLabel\",\n                    \"CultureLabelKey\": \"FieldAddWeatherOnSaveLabel\",\n                    \"Label\": \"[FieldAddWeatherOnSaveLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941693,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941693,\n                    \"InstanceId\": 50941693,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAreaUsedLabel\",\n                    \"CultureLabelKey\": \"FieldAreaUsedLabel\",\n                    \"Label\": \"[FieldAreaUsedLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941694,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941694,\n                    \"InstanceId\": 50941694,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAreaUsedLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldAreaUsedLabelCapitalized\",\n                    \"Label\": \"[FieldAreaUsedLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941695,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941695,\n                    \"InstanceId\": 50941695,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAssetNumberLabel\",\n                    \"CultureLabelKey\": \"FieldAssetNumberLabel\",\n                    \"Label\": \"[FieldAssetNumberLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941696,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941696,\n                    \"InstanceId\": 50941696,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAssetNumberLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldAssetNumberLabelCapitalized\",\n                    \"Label\": \"[FieldAssetNumberLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941697,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941697,\n                    \"InstanceId\": 50941697,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldAuthorLabel\",\n                    \"CultureLabelKey\": \"FieldAuthorLabel\",\n                    \"Label\": \"[FieldAuthorLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941698,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941698,\n                    \"InstanceId\": 50941698,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompanyLabel\",\n                    \"CultureLabelKey\": \"FieldCompanyLabel\",\n                    \"Label\": \"[FieldCompanyLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941699,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941699,\n                    \"InstanceId\": 50941699,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompanyLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldCompanyLabelCapitalized\",\n                    \"Label\": \"[FieldCompanyLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941700,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941700,\n                    \"InstanceId\": 50941700,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompanyLaborTypeLabel\",\n                    \"CultureLabelKey\": \"FieldCompanyLaborTypeLabel\",\n                    \"Label\": \"[FieldCompanyLaborTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941701,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941701,\n                    \"InstanceId\": 50941701,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCompaniesLabel\",\n                    \"CultureLabelKey\": \"FieldCompaniesLabel\",\n                    \"Label\": \"[FieldCompaniesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941702,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941702,\n                    \"InstanceId\": 50941702,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldCostCode\",\n                    \"Label\": \"[FieldCostCodeLabel]\",\n                    \"CultureLabelKey\": \"FieldCostCodeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941703,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941703,\n                    \"InstanceId\": 50941703,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCountedWorkersControl\",\n                    \"CultureLabelKey\": \"FieldCountedWorkersControl\",\n                    \"Label\": \"[FieldCountedWorkersControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941704,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941704,\n                    \"InstanceId\": 50941704,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldCountedWorkersCapitalized\",\n                    \"CultureLabelKey\": \"FieldCountedWorkersCapitalized\",\n                    \"Label\": \"[FieldCountedWorkersCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941705,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941705,\n                    \"InstanceId\": 50941705,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldDailyReportNumber\",\n                    \"Label\": \"[FieldDailyReportNumberLabel]\",\n                    \"CultureLabelKey\": \"FieldDailyReportNumberLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941706,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941706,\n                    \"InstanceId\": 50941706,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldDefaultShiftLengthLabel\",\n                    \"CultureLabelKey\": \"FieldDefaultShiftLengthLabel\",\n                    \"Label\": \"[FieldDefaultShiftLengthLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941707,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941707,\n                    \"InstanceId\": 50941707,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldDefaultShiftLengthCapsLabel\",\n                    \"CultureLabelKey\": \"FieldDefaultShiftLengthCapsLabel\",\n                    \"Label\": \"[FieldDefaultShiftLengthCapsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941708,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941708,\n                    \"InstanceId\": 50941708,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldEquipmentItemLabel\",\n                    \"CultureLabelKey\": \"FieldEquipmentItemLabel\",\n                    \"Label\": \"[FieldEquipmentItemLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941709,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941709,\n                    \"InstanceId\": 50941709,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldEquipmentItemLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldEquipmentItemLabelCapitalized\",\n                    \"Label\": \"[FieldEquipmentItemLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941710,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941710,\n                    \"InstanceId\": 50941710,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldEquipmentNotesLabel\",\n                    \"Label\": \"[FieldEquipmentNotesLabel]\",\n                    \"CultureLabelKey\": \"FieldEquipmentNotesCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941711,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941711,\n                    \"InstanceId\": 50941711,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborActivityCodeCapitalized\",\n                    \"CultureLabelKey\": \"FieldInternalLaborActivityCodeCapitalized\",\n                    \"Label\": \"[FieldInternalLaborActivityCodeCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941712,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941712,\n                    \"InstanceId\": 50941712,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTotal\",\n                    \"Label\": \"[FieldInternalLaborTotalLabel]\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTotalLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941713,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941713,\n                    \"InstanceId\": 50941713,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTotalCapitalized\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTotalCapitalized\",\n                    \"Label\": \"[FieldInternalLaborTotalCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941714,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941714,\n                    \"InstanceId\": 50941714,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldInternalLaborTrackingNameCapitalized\",\n                    \"CultureLabelKey\": \"FieldInternalLaborTrackingNameCapitalized\",\n                    \"Label\": \"[FieldInternalLaborTrackingNameCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941715,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941715,\n                    \"InstanceId\": 50941715,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldIsLostDayLabel\",\n                    \"CultureLabelKey\": \"FieldIsLostDayLabel\",\n                    \"Label\": \"[FieldIsLostDayLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941716,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941716,\n                    \"InstanceId\": 50941716,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeTotalUnitsCapitalized\",\n                    \"CultureLabelKey\": \"FieldLaborTypeTotalUnitsCapitalized\",\n                    \"Label\": \"[FieldLaborTypeTotalUnitsCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941717,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941717,\n                    \"InstanceId\": 50941717,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeLabel\",\n                    \"CultureLabelKey\": \"FieldLaborTypeLabel\",\n                    \"Label\": \"[FieldLaborTypeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941718,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941718,\n                    \"InstanceId\": 50941718,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeLaborUnits\",\n                    \"CultureLabelKey\": \"FieldLaborTypeLaborUnits\",\n                    \"Label\": \"[FieldLaborTypeLaborUnits]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941719,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941719,\n                    \"InstanceId\": 50941719,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeReportedWorkers\",\n                    \"CultureLabelKey\": \"FieldLaborTypeReportedWorkers\",\n                    \"Label\": \"[FieldLaborTypeReportedWorkers]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941720,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941720,\n                    \"InstanceId\": 50941720,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeCountedWorkers\",\n                    \"CultureLabelKey\": \"FieldLaborTypeCountedWorkers\",\n                    \"Label\": \"[FieldLaborTypeCountedWorkers]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941721,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941721,\n                    \"InstanceId\": 50941721,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborTypeClassification\",\n                    \"Label\": \"[FieldLaborClassificationLabel]\",\n                    \"CultureLabelKey\": \"FieldLaborClassificationLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941722,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941722,\n                    \"InstanceId\": 50941722,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLaborUnitsControl\",\n                    \"Label\": \"[FieldLaborUnitsControl]\",\n                    \"CultureLabelKey\": \"FieldLaborUnitsControlCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941723,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941723,\n                    \"InstanceId\": 50941723,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayCauseLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayCauseLabel\",\n                    \"Label\": \"[FieldLostDayCauseLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941724,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941724,\n                    \"InstanceId\": 50941724,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDateNoticeDueLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDateNoticeDueLabel\",\n                    \"Label\": \"[FieldLostDayDateNoticeDueLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941725,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941725,\n                    \"InstanceId\": 50941725,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDateDueOffsetLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDateDueOffsetLabel\",\n                    \"Label\": \"[FieldLostDayDateDueOffsetLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941726,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941726,\n                    \"InstanceId\": 50941726,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDateNoticeSentLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDateNoticeSentLabel\",\n                    \"Label\": \"[FieldLostDayDateNoticeSentLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941727,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941727,\n                    \"InstanceId\": 50941727,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldLostDayDelayReporterLabel\",\n                    \"CultureLabelKey\": \"FieldLostDayDelayReporterLabel\",\n                    \"Label\": \"[FieldLostDayDelayReporterLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941728,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941728,\n                    \"InstanceId\": 50941728,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldMaterialReceivedNotesLabel\",\n                    \"Label\": \"[FieldMaterialReceivedNotesLabel]\",\n                    \"CultureLabelKey\": \"FieldMaterialReceivedNotesCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941729,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941729,\n                    \"InstanceId\": 50941729,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldNotesLabel\",\n                    \"CultureLabelKey\": \"FieldNotesLabel\",\n                    \"Label\": \"[FieldNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941730,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941730,\n                    \"InstanceId\": 50941730,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldNumberLabel\",\n                    \"CultureLabelKey\": \"FieldNumberLabel\",\n                    \"Label\": \"[FieldNumberLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941731,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941731,\n                    \"InstanceId\": 50941731,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservationNumberLabel\",\n                    \"Label\": \"[FieldObservationNumberLabel]\",\n                    \"CultureLabelKey\": \"FieldObservationNumberCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941732,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941732,\n                    \"InstanceId\": 50941732,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservationSubjectLabel\",\n                    \"Label\": \"[FieldObservationSubjectLabel]\",\n                    \"CultureLabelKey\": \"FieldObservationSubjectCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941733,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941733,\n                    \"InstanceId\": 50941733,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservationObservedByLabel\",\n                    \"Label\": \"[FieldObservationObservedByLabel]\",\n                    \"CultureLabelKey\": \"FieldObservationObservedByCultureLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941734,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941734,\n                    \"InstanceId\": 50941734,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldObservedByLabel\",\n                    \"CultureLabelKey\": \"FieldObservedByLabel\",\n                    \"Label\": \"[FieldObservedByLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941735,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941735,\n                    \"InstanceId\": 50941735,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldOvertimeLabel\",\n                    \"CultureLabelKey\": \"FieldOvertimeLabel\",\n                    \"Label\": \"[FieldOvertimeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941736,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941736,\n                    \"InstanceId\": 50941736,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldOvertimeLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldOvertimeLabelCapitalized\",\n                    \"Label\": \"[FieldOvertimeLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941737,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941737,\n                    \"InstanceId\": 50941737,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldPrecipitationInchesLabel\",\n                    \"CultureLabelKey\": \"FieldPrecipitationInchesLabel\",\n                    \"Label\": \"[FieldPrecipitationInchesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941738,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941738,\n                    \"InstanceId\": 50941738,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldQuantityReceivedLabel\",\n                    \"CultureLabelKey\": \"FieldQuantityReceivedLabel\",\n                    \"Label\": \"[FieldQuantityReceivedLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941739,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941739,\n                    \"InstanceId\": 50941739,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldQuantityReceivedLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldQuantityReceivedLabelCapitalized\",\n                    \"Label\": \"[FieldQuantityReceivedLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941740,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941740,\n                    \"InstanceId\": 50941740,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton1Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton1Label\",\n                    \"Label\": \"[FieldRadioButton1Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941741,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941741,\n                    \"InstanceId\": 50941741,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton2Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton2Label\",\n                    \"Label\": \"[FieldRadioButton2Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941742,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941742,\n                    \"InstanceId\": 50941742,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton3Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton3Label\",\n                    \"Label\": \"[FieldRadioButton3Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941743,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941743,\n                    \"InstanceId\": 50941743,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton4Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton4Label\",\n                    \"Label\": \"[FieldRadioButton4Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941744,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941744,\n                    \"InstanceId\": 50941744,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton5Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton5Label\",\n                    \"Label\": \"[FieldRadioButton5Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941745,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941745,\n                    \"InstanceId\": 50941745,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton6Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton6Label\",\n                    \"Label\": \"[FieldRadioButton6Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941746,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941746,\n                    \"InstanceId\": 50941746,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton7Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton7Label\",\n                    \"Label\": \"[FieldRadioButton7Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941747,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941747,\n                    \"InstanceId\": 50941747,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton8Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton8Label\",\n                    \"Label\": \"[FieldRadioButton8Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941748,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941748,\n                    \"InstanceId\": 50941748,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton9Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton9Label\",\n                    \"Label\": \"[FieldRadioButton9Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941749,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941749,\n                    \"InstanceId\": 50941749,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton10Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton10Label\",\n                    \"Label\": \"[FieldRadioButton10Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941750,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941750,\n                    \"InstanceId\": 50941750,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton11Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton11Label\",\n                    \"Label\": \"[FieldRadioButton11Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941751,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941751,\n                    \"InstanceId\": 50941751,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton12Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton12Label\",\n                    \"Label\": \"[FieldRadioButton12Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941752,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941752,\n                    \"InstanceId\": 50941752,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton13Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton13Label\",\n                    \"Label\": \"[FieldRadioButton13Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941753,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941753,\n                    \"InstanceId\": 50941753,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton14Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton14Label\",\n                    \"Label\": \"[FieldRadioButton14Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941754,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941754,\n                    \"InstanceId\": 50941754,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton15Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton15Label\",\n                    \"Label\": \"[FieldRadioButton15Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941755,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941755,\n                    \"InstanceId\": 50941755,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton16Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton16Label\",\n                    \"Label\": \"[FieldRadioButton16Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941756,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941756,\n                    \"InstanceId\": 50941756,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton17Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton17Label\",\n                    \"Label\": \"[FieldRadioButton17Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941757,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941757,\n                    \"InstanceId\": 50941757,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton18Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton18Label\",\n                    \"Label\": \"[FieldRadioButton18Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941758,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941758,\n                    \"InstanceId\": 50941758,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton19Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton19Label\",\n                    \"Label\": \"[FieldRadioButton19Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941759,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941759,\n                    \"InstanceId\": 50941759,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldRadioButton20Label\",\n                    \"CultureLabelKey\": \"FieldRadioButton20Label\",\n                    \"Label\": \"[FieldRadioButton20Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941760,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941760,\n                    \"InstanceId\": 50941760,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReadingLabel\",\n                    \"CultureLabelKey\": \"FieldReadingLabel\",\n                    \"Label\": \"[FieldReadingLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941761,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941761,\n                    \"InstanceId\": 50941761,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReadingLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldReadingLabelCapitalized\",\n                    \"Label\": \"[FieldReadingLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941762,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941762,\n                    \"InstanceId\": 50941762,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReferencesLabel\",\n                    \"CultureLabelKey\": \"FieldReferencesLabel\",\n                    \"Label\": \"[FieldReferencesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941763,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941763,\n                    \"InstanceId\": 50941763,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportContactLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldReportContactLabelCapitalized\",\n                    \"Label\": \"[FieldReportContactLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941764,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941764,\n                    \"InstanceId\": 50941764,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportedWorkersCapitalized\",\n                    \"CultureLabelKey\": \"FieldReportedWorkersCapitalized\",\n                    \"Label\": \"[FieldReportedWorkersCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941765,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941765,\n                    \"InstanceId\": 50941765,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportedWorkersControl\",\n                    \"CultureLabelKey\": \"FieldReportedWorkersControl\",\n                    \"Label\": \"[FieldReportedWorkersControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941766,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941766,\n                    \"InstanceId\": 50941766,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldReportContactLabel\",\n                    \"CultureLabelKey\": \"FieldReportContactLabel\",\n                    \"Label\": \"[FieldReportContactLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941767,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941767,\n                    \"InstanceId\": 50941767,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSearchLabel\",\n                    \"CultureLabelKey\": \"FieldSearchLabel\",\n                    \"Label\": \"[FieldSearchLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941768,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941768,\n                    \"InstanceId\": 50941768,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldShiftLabel\",\n                    \"CultureLabelKey\": \"FieldShiftLabel\",\n                    \"Label\": \"[FieldShiftLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941769,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941769,\n                    \"InstanceId\": 50941769,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSignatureDateTime\",\n                    \"Label\": \"[SignatureDateTimeLabel]\",\n                    \"CultureLabelKey\": \"SignatureDateTimeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941770,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941770,\n                    \"InstanceId\": 50941770,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSignatureRole\",\n                    \"CultureLabelKey\": \"FieldSignatureRole\",\n                    \"Label\": \"[FieldSignatureRole]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941771,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941771,\n                    \"InstanceId\": 50941771,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStatusLabel\",\n                    \"Label\": \"[FieldStatusLabel]\",\n                    \"CultureLabelKey\": \"FieldStatusLabelCultureLabelKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941772,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941772,\n                    \"InstanceId\": 50941772,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStatusLabelCapitalized\",\n                    \"CultureLabelKey\": \"FieldStatusLabelCapitalized\",\n                    \"Label\": \"[FieldStatusLabelCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941773,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941773,\n                    \"InstanceId\": 50941773,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[FieldStatusLabel]\",\n                    \"Name\": \"FieldStatusWorkflowLabel\",\n                    \"CultureLabelKey\": \"FieldStatusWorkflowLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941774,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941774,\n                    \"InstanceId\": 50941774,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStepLabel\",\n                    \"CultureLabelKey\": \"FieldStepLabel\",\n                    \"Label\": \"[FieldStepLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941775,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941775,\n                    \"InstanceId\": 50941775,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStraightTimeLabel\",\n                    \"CultureLabelKey\": \"FieldStraightTimeLabel\",\n                    \"Label\": \"[FieldStraightTimeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941776,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941776,\n                    \"InstanceId\": 50941776,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldStraightTimeLabelCapitalized\",\n                    \"Label\": \"[FieldStraightTimeLabelCapitalized]\",\n                    \"CultureLabelKey\": \"FieldStraightTimeLabelCapitalizedCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941777,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941777,\n                    \"InstanceId\": 50941777,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldSubjectLabel\",\n                    \"CultureLabelKey\": \"FieldSubjectLabel\",\n                    \"Label\": \"[FieldSubjectLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941778,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941778,\n                    \"InstanceId\": 50941778,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTemperatureFLabel\",\n                    \"CultureLabelKey\": \"FieldTemperatureFLabel\",\n                    \"Label\": \"[FieldTemperatureFLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941779,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941779,\n                    \"InstanceId\": 50941779,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTimeLabel\",\n                    \"CultureLabelKey\": \"FieldTimeLabel\",\n                    \"Label\": \"[FieldTimeLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941780,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941780,\n                    \"InstanceId\": 50941780,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTotalLabel\",\n                    \"CultureLabelKey\": \"FieldTotalLabel\",\n                    \"Label\": \"[FieldTotalLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941781,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941781,\n                    \"InstanceId\": 50941781,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTotalLaborUnitsLabel\",\n                    \"CultureLabelKey\": \"FieldTotalLaborUnitsLabel\",\n                    \"Label\": \"[FieldTotalLaborUnitsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941782,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941782,\n                    \"InstanceId\": 50941782,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldTransmitLabel\",\n                    \"CultureLabelKey\": \"FieldTransmitLabel\",\n                    \"Label\": \"[FieldTransmitLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941783,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941783,\n                    \"InstanceId\": 50941783,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldVisitorsLabel\",\n                    \"CultureLabelKey\": \"FieldVisitorsLabel\",\n                    \"Label\": \"[FieldVisitorsLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941784,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941784,\n                    \"InstanceId\": 50941784,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWeatherNotesLabel\",\n                    \"CultureLabelKey\": \"FieldWeatherNotesLabel\",\n                    \"Label\": \"[FieldWeatherNotesLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941785,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941785,\n                    \"InstanceId\": 50941785,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkersLabel\",\n                    \"CultureLabelKey\": \"FieldWorkersLabel\",\n                    \"Label\": \"[FieldWorkersLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941786,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941786,\n                    \"InstanceId\": 50941786,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationLabel\",\n                    \"Label\": \"[FieldWorkLocationLabel]\",\n                    \"CultureLabelKey\": \"FieldWorkLocationLabelCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941787,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941787,\n                    \"InstanceId\": 50941787,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationCapitalized\",\n                    \"CultureLabelKey\": \"FieldWorkLocationCapitalized\",\n                    \"Label\": \"[FieldWorkLocationCapitalized]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941788,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941788,\n                    \"InstanceId\": 50941788,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationCompanyLabel\",\n                    \"Label\": \"[FieldWorkLocationCompanyLabel]\",\n                    \"CultureLabelKey\": \"FieldWorkLocationCompanyLabelCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941789,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941789,\n                    \"InstanceId\": 50941789,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"FieldWorkLocationMaterialReceivedLabel\",\n                    \"Label\": \"[FieldWorkLocationMaterialReceivedLabel]\",\n                    \"CultureLabelKey\": \"FieldWorkLocationMaterialReceivedLabelCultureKey\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941790,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941790,\n                    \"InstanceId\": 50941790,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"NonworkdayCheckboxLabel\",\n                    \"CultureLabelKey\": \"NonworkdayCheckboxLabel\",\n                    \"Label\": \"[NonworkdayCheckboxLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941791,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941791,\n                    \"InstanceId\": 50941791,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"SignatureContactLabel\",\n                    \"CultureLabelKey\": \"SignatureContactLabel\",\n                    \"Label\": \"[SignatureContactLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941792,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941792,\n                    \"InstanceId\": 50941792,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Label\": \"[SignatureDateTimeLabel]\",\n                    \"CultureLabelKey\": \"SignatureDateTimeLabel\",\n                    \"Name\": \"SignatureDateTimeLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941793,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941793,\n                    \"InstanceId\": 50941793,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewAreaUsedLabel\",\n                    \"CultureLabelKey\": \"ViewAreaUsedLabel\",\n                    \"Label\": \"[ViewAreaUsedLabel]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941794,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941794,\n                    \"InstanceId\": 50941794,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewAssetNumberControl\",\n                    \"CultureLabelKey\": \"ViewAssetNumberControl\",\n                    \"Label\": \"[ViewAssetNumberControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941795,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941795,\n                    \"InstanceId\": 50941795,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewEquipmentItemControl\",\n                    \"CultureLabelKey\": \"ViewEquipmentItemControl\",\n                    \"Label\": \"[ViewEquipmentItemControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941796,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941796,\n                    \"InstanceId\": 50941796,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewReadingControl\",\n                    \"CultureLabelKey\": \"ViewReadingControl\",\n                    \"Label\": \"[ViewReadingControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941797,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941797,\n                    \"InstanceId\": 50941797,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"ViewWorkDescriptionControl\",\n                    \"CultureLabelKey\": \"ViewWorkDescriptionControl\",\n                    \"Label\": \"[ViewWorkDescriptionControl]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941798,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941798,\n                    \"InstanceId\": 50941798,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_TotalInternalWorkers\",\n                    \"Label\": \"[DailyReport_TotalInternalWorkersLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_TotalInternalWorkersLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941799,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941799,\n                    \"InstanceId\": 50941799,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_TotalInternalStraightTimeUnits\",\n                    \"Label\": \"[DailyReport_TotalInternalStraightTimeUnitsLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_TotalInternalStraightTimeUnitsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941800,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941800,\n                    \"InstanceId\": 50941800,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsVisible\": \"True\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"Name\": \"DailyReport_TotalInternalOvertimeUnits\",\n                    \"Label\": \"[DailyReport_TotalInternalOvertimeUnitsLabel]\",\n                    \"CultureLabelKey\": \"DailyReport_TotalInternalOvertimeUnitsLabel\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941801,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941801,\n                    \"InstanceId\": 50941801,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup1Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup1Label\",\n                    \"Label\": \"[FieldUniversalLookup1Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941802,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941802,\n                    \"InstanceId\": 50941802,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup2Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup2Label\",\n                    \"Label\": \"[FieldUniversalLookup2Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941803,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941803,\n                    \"InstanceId\": 50941803,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup3Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup3Label\",\n                    \"Label\": \"[FieldUniversalLookup3Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941804,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941804,\n                    \"InstanceId\": 50941804,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup4Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup4Label\",\n                    \"Label\": \"[FieldUniversalLookup4Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                },\n                {\n                    \"id\": 50941805,\n                    \"entityDef\": \"kahua_Core.DataTag\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"CreatedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"ModifiedDateTime\": \"2025-07-23T19:24:44.947\",\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50941805,\n                    \"InstanceId\": 50941805,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"IsRequired\": \"Default\",\n                    \"IsRequiredLocked\": \"Default\",\n                    \"IsVisible\": \"False\",\n                    \"Name\": \"FieldUniversalLookup5Label\",\n                    \"CultureLabelKey\": \"FieldUniversalLookup5Label\",\n                    \"Label\": \"[FieldUniversalLookup5Label]\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                }\n            ]\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                }
              ]
            },
            {
              "name": "5.2.11: (QRY) Get Portable View Configuration",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_PortableViewConfiguration\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // To query for a specific app, use:\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"AppName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_AEC_DailyReport\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"Items\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "This query returns the portable view configuration from the \"Portable Views\" tab in the Configuration app.\n\nSee 5.2.6 for more information on how to use this query."
              },
              "response": [
                {
                  "name": "Get Daily Report PVs",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_Core.kahua_PortableViewConfiguration\",\r\n    \"Partition\": {\r\n        // See 1.1.3\r\n        \"Scope\": \"Any\"\r\n    },\r\n    // See 1.4.2\r\n    \"TakeAll\": true,\r\n    \"Condition\": [\r\n        // See 1.2.2\r\n        {\r\n            \"PropertyName\": \"AllOf\",\r\n            \"_children\": [\r\n                // See 1.2.1\r\n                {\r\n                    \"PropertyName\": \"Data\",\r\n                    \"Path\": \"AppName\",\r\n                    \"Type\": \"EqualTo\",\r\n                    \"Value\": \"kahua_AEC_DailyReport\"\r\n                },\r\n                // See 1.2.2\r\n                {\r\n                    \"PropertyName\": \"AnyOf\",\r\n                    \"_children\": [\r\n                        // See 1.2.1\r\n                        {\r\n                            \"PropertyName\": \"Data\",\r\n                            \"Type\": \"In\",\r\n                            \"Path\": \"PartitionId\",\r\n                            \"Values\": \"0,-1\"\r\n                        },\r\n                        // See 1.2.4\r\n                        {\r\n                            \"PropertyName\": \"PathedPartition\",\r\n                            \"Path\": \"Partition\",\r\n                            \"Is\": \"AtOrBelow\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    // See 1.3.2\r\n    \"Explicits\": [\r\n        {\r\n            \"PropertyName\": \"Data\",\r\n            \"Path\": \"Items\"\r\n        }\r\n    ],\r\n    // See 1.3.3\r\n    \"ImplicitsDisabled\": true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "1139"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:46:18 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 1,\n    \"entities\": [\n        {\n            \"id\": 50940484,\n            \"entityDef\": \"kahua_Core.kahua_PortableViewConfiguration\",\n            \"hubPath\": \"\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"MarkupEnabled\": false,\n            \"ModifiedDateTime\": \"2025-07-22T21:59:02.443\",\n            \"CreatedDateTime\": \"2025-07-22T21:59:02.443\",\n            \"Instance\": 1,\n            \"PortableViewInstance\": 1,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50940484,\n            \"InstanceId\": 50940484,\n            \"AppName\": \"kahua_AEC_DailyReport\",\n            \"SourceApp\": \"kahua_Core\",\n            \"AppNameLabel\": \"[AppLabel]\",\n            \"Items\": [\n                {\n                    \"id\": 50940485,\n                    \"entityDef\": \"kahua_Core.kahua_PortableViewConfigurationItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": [],\n                    \"MarkupEnabled\": false,\n                    \"IsExchangeEntity\": false,\n                    \"Disabled\": false,\n                    \"CreatedDateTime\": \"2025-07-22T21:59:02.443\",\n                    \"ModifiedDateTime\": \"2025-07-22T21:59:02.443\",\n                    \"FromPartitionId\": -1,\n                    \"PortableViewInstance\": 1,\n                    \"Instance\": 1,\n                    \"DomainPartitionId\": 50926912,\n                    \"PartitionId\": 50926912,\n                    \"Id\": 50940485,\n                    \"InstanceId\": 50940485,\n                    \"SourceApp\": \"kahua_Core\",\n                    \"DefaultTemplateName\": \"Kahua Default\",\n                    \"PortableViewName\": \"kahua_AEC_DailyReport.DailyReportViewReport\",\n                    \"LogoOptionName\": \"DomainLogoOption\",\n                    \"AppNameLabel\": \"[AppLabel]\"\n                }\n            ]\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56357509\n}"
                }
              ]
            },
            {
              "name": "5.2.12: Get App Settings",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/settings/all",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "settings",
                    "all"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_FileManager"
                    }
                  ]
                },
                "description": "This request returns the settings for the app `:appName` in project `:projectId`.\n\nThe response body is a list of JSON objects, each with the following fields:\n\n- `name`: The name of the setting\n    \n- `value`: The value of the setting\n    \n- `label`: The localized name of the setting (may refer to a label in the app definition)"
              },
              "response": [
                {
                  "name": "Get File Manager Settings",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/settings/all",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "settings",
                        "all"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_FileManager"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "138"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "0"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:38:56 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "[\n    {\n        \"name\": \"DisplayPermmissionsForContributorModerator\",\n        \"value\": \"False\",\n        \"label\": \"[SettingDisplayPermmissionsForContributorModeratorLabel]\"\n    }\n]"
                }
              ]
            }
          ],
          "description": "This section details requests regarding Apps."
        },
        {
          "name": "5.3: Entities",
          "item": [
            {
              "name": "5.3.1: Download Entity's Portable View",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/entities/:entityId/portableviews/:viewName/render",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "entities",
                    ":entityId",
                    "portableviews",
                    ":viewName",
                    "render"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "entityId",
                      "value": "{{kpc-seed-2.1.2-id}}"
                    },
                    {
                      "key": "viewName",
                      "value": "kahua_AEC_DailyReport.DailyReportViewReport"
                    }
                  ]
                },
                "description": "This request renders and returns the Portable View `:viewName` for the entity `:entityId` in project `:projectId`. This request may take some time to run, depending on the complexity of the portable view."
              },
              "response": []
            },
            {
              "name": "5.3.2: Get Entity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/maintenance/entity/get/:entityId",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "maintenance",
                    "entity",
                    "get",
                    ":entityId"
                  ],
                  "variable": [
                    {
                      "key": "entityId",
                      "value": "{{kpc-seed-2.1.2-id}}"
                    }
                  ]
                },
                "description": "> _**NOTE**_: This request is functionally equvalent to calling 1.1.5 using the more verbose `v1` endpoint. Using 1.1.5 instead will give a smaller response that is easier to parse. \n  \n\nThis request returns a single entity `:entityId`. If you would like to get multiple entities at the same time, use a query with `EntityRange` instead (see 1.1.5).\n\nThe body of the response has the following fields:\n\n- `id`: The ID of the entity. Should always be the same as `:entityId`\n    \n- `entityDef`: The full entity definition name of the entity\n    \n- `hubPath`: The hubpath of the entity\n    \n- `attributes`: A list of objects, each with the following:\n    \n    - `name`: The name of the attribute\n        \n    - One of the following:\n        \n        - `value`: The value of the attribute\n            \n        - `entities:` A list of objects with the same schema as this request's body, but with no `attributes`. If you would like to include the attributes of these entities, use a query with `EntityRange` and `Explicits` (see 1.1.5 and 1.3.2)\n            \n        - `file`: An object with the following fields:\n            \n            - `identifier`: Equal to the ID of the entity the file is attached to plus the ID of the file, separated by a dash\n                \n            - `name`: The name of the file (with the file extension)"
              },
              "response": [
                {
                  "name": "Get Daily Report",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/maintenance/entity/get/:entityId",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "maintenance",
                        "entity",
                        "get",
                        ":entityId"
                      ],
                      "variable": [
                        {
                          "key": "entityId",
                          "value": "50944246"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "3901"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "47"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:47:27 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 50944246,\n    \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n    \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n    \"attributes\": [\n        {\n            \"name\": \"PortableView\",\n            \"file\": {\n                \"identifier\": \"50944246-50946674\",\n                \"name\": \"Daily_Report_DailyReportViewReport_0019.en.en.pdf\"\n            }\n        },\n        {\n            \"name\": \"AutomationLabel\",\n            \"value\": \"0019 Brandon Buckley\"\n        },\n        {\n            \"name\": \"IsExchangeEntity\",\n            \"value\": \"False\"\n        },\n        {\n            \"name\": \"AddWeatherOnSave\",\n            \"value\": \"False\"\n        },\n        {\n            \"name\": \"CopyDailyReportMaterials\",\n            \"value\": \"False\"\n        },\n        {\n            \"name\": \"IsLostDay\",\n            \"value\": \"False\"\n        },\n        {\n            \"name\": \"MarkupEnabled\",\n            \"value\": \"False\"\n        },\n        {\n            \"name\": \"Date\",\n            \"value\": \"\\\"2025-07-25T00:00:00\\\"\"\n        },\n        {\n            \"name\": \"CreatedDateTime\",\n            \"value\": \"\\\"2025-07-25T13:01:23.783\\\"\"\n        },\n        {\n            \"name\": \"ModifiedDateTime\",\n            \"value\": \"\\\"2025-07-28T13:47:09.407\\\"\"\n        },\n        {\n            \"name\": \"TotalInternalLabor\",\n            \"value\": \"0.000000000\"\n        },\n        {\n            \"name\": \"TotalLaborUnits\",\n            \"value\": \"0.000000000\"\n        },\n        {\n            \"name\": \"CompanyCount\",\n            \"value\": \"0\"\n        },\n        {\n            \"name\": \"LostDayDateDueOffset\",\n            \"value\": \"0\"\n        },\n        {\n            \"name\": \"Instance\",\n            \"value\": \"5\"\n        },\n        {\n            \"name\": \"PartitionId\",\n            \"value\": \"50926912\"\n        },\n        {\n            \"name\": \"DomainPartitionId\",\n            \"value\": \"50926912\"\n        },\n        {\n            \"name\": \"Id\",\n            \"value\": \"50944246\"\n        },\n        {\n            \"name\": \"InstanceId\",\n            \"value\": \"50946672\"\n        },\n        {\n            \"name\": \"Number\",\n            \"value\": \"0019\"\n        },\n        {\n            \"name\": \"Notes\",\n            \"value\": \"Updated Notes... Velit ab inventore quae cum qui non distinctio earum.\"\n        },\n        {\n            \"name\": \"LongLabel\",\n            \"value\": \"Daily Report: 7/25/2025\"\n        },\n        {\n            \"name\": \"DetailLabel\",\n            \"value\": \"Daily Report: 7/25/2025\"\n        },\n        {\n            \"name\": \"RecycleBinLabel\",\n            \"value\": \"Daily Report: 7/25/2025\"\n        },\n        {\n            \"name\": \"ShortLabel\",\n            \"value\": \"Daily Report: 7/25/2025\"\n        },\n        {\n            \"name\": \"AppNameLabel\",\n            \"value\": \"Daily Reports\"\n        },\n        {\n            \"name\": \"CreatedBy\",\n            \"entities\": [\n                {\n                    \"id\": 49711149,\n                    \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                    \"hubPath\": \"\",\n                    \"attributes\": [\n                        {\n                            \"name\": \"IsExchangeEntity\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"IsEmployee\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"MarkupEnabled\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"IsDomainUser\",\n                            \"value\": \"True\"\n                        },\n                        {\n                            \"name\": \"IsInSyncWithCommunity\",\n                            \"value\": \"True\"\n                        },\n                        {\n                            \"name\": \"IsPublished\",\n                            \"value\": \"True\"\n                        },\n                        {\n                            \"name\": \"IsDomainAdmin\",\n                            \"value\": \"True\"\n                        },\n                        {\n                            \"name\": \"ActivationDateTime\",\n                            \"value\": \"\\\"2025-05-19T17:53:30.927\\\"\"\n                        },\n                        {\n                            \"name\": \"CreatedDateTime\",\n                            \"value\": \"\\\"2025-05-19T17:53:31.2\\\"\"\n                        },\n                        {\n                            \"name\": \"ModifiedDateTime\",\n                            \"value\": \"\\\"2025-05-19T17:53:51.683\\\"\"\n                        },\n                        {\n                            \"name\": \"DomainPartitionId\",\n                            \"value\": \"0\"\n                        },\n                        {\n                            \"name\": \"Instance\",\n                            \"value\": \"3\"\n                        },\n                        {\n                            \"name\": \"PortableViewInstance\",\n                            \"value\": \"3\"\n                        },\n                        {\n                            \"name\": \"PartitionId\",\n                            \"value\": \"49709712\"\n                        },\n                        {\n                            \"name\": \"Id\",\n                            \"value\": \"49711149\"\n                        },\n                        {\n                            \"name\": \"InstanceId\",\n                            \"value\": \"49711160\"\n                        },\n                        {\n                            \"name\": \"EmailAddress\",\n                            \"value\": \"bbuckley@kahua.com\"\n                        },\n                        {\n                            \"name\": \"FirstName\",\n                            \"value\": \"Brandon\"\n                        },\n                        {\n                            \"name\": \"LastName\",\n                            \"value\": \"Buckley\"\n                        },\n                        {\n                            \"name\": \"PersonId\",\n                            \"value\": \"ad90fc9a-85a0-443d-a294-99074e079225\"\n                        },\n                        {\n                            \"name\": \"SourceApp\",\n                            \"value\": \"kahua_PeopleManager\"\n                        },\n                        {\n                            \"name\": \"AppNameLabel\",\n                            \"value\": \"[AppLabel]\"\n                        },\n                        {\n                            \"name\": \"ContactCompanyLabel\",\n                            \"value\": \"Brandon Buckley - BBuckleyCo\"\n                        },\n                        {\n                            \"name\": \"ContactFullNameLabel\",\n                            \"value\": \"Brandon Buckley\"\n                        },\n                        {\n                            \"name\": \"ShortLabel\",\n                            \"value\": \"Brandon Buckley\"\n                        },\n                        {\n                            \"name\": \"CompanyContactLabel\",\n                            \"value\": \"BBuckleyCo - Brandon Buckley\"\n                        },\n                        {\n                            \"name\": \"LongLabel\",\n                            \"value\": \"Brandon Buckley (bbuckley@kahua.com)\"\n                        },\n                        {\n                            \"name\": \"DetailLabel\",\n                            \"value\": \"Name: Brandon Buckley\"\n                        },\n                        {\n                            \"name\": \"FullTextIndexContent\",\n                            \"value\": \"Brandon Buckley BBuckleyCo\"\n                        },\n                        {\n                            \"name\": \"ProfilePhoto\",\n                            \"file\": {\n                                \"identifier\": \"49711149-49711154\",\n                                \"name\": \"default_profile_photo.png\"\n                            }\n                        },\n                        {\n                            \"name\": \"Company\",\n                            \"entities\": [\n                                {\n                                    \"id\": 49709785,\n                                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                                    \"hubPath\": \"\",\n                                    \"attributes\": [],\n                                    \"outwardReferences\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Office\",\n                            \"entities\": [\n                                {\n                                    \"id\": 49709783,\n                                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                                    \"hubPath\": \"\",\n                                    \"attributes\": [],\n                                    \"outwardReferences\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"outwardReferences\": []\n                }\n            ]\n        },\n        {\n            \"name\": \"Partition\",\n            \"entities\": [\n                {\n                    \"id\": 50926912,\n                    \"entityDef\": \"kahua_Project.Project\",\n                    \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                    \"attributes\": [],\n                    \"outwardReferences\": []\n                }\n            ]\n        },\n        {\n            \"name\": \"Author\",\n            \"entities\": [\n                {\n                    \"id\": 49711149,\n                    \"referenceType\": 1,\n                    \"attributes\": [],\n                    \"outwardReferences\": []\n                }\n            ]\n        },\n        {\n            \"name\": \"DomainPartition\",\n            \"entities\": [\n                {\n                    \"id\": 50926912,\n                    \"referenceType\": 1,\n                    \"attributes\": [],\n                    \"outwardReferences\": []\n                }\n            ]\n        }\n    ],\n    \"outwardReferences\": []\n}"
                }
              ]
            },
            {
              "name": "5.3.3: Get Entity Markers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/entitydefs/:entityDef/markers/from/:lastMarker",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "entitydefs",
                    ":entityDef",
                    "markers",
                    "from",
                    ":lastMarker"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    },
                    {
                      "key": "entityDef",
                      "value": "DailyReport"
                    },
                    {
                      "key": "lastMarker",
                      "value": "{{kpc-seed-marker}}"
                    }
                  ]
                },
                "description": "[Markers - Entity Marker | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/EntityMarkers)\n\nThis request returns a list of markers for `:appName.:entityDef` entities from project `:projectId` starting after (and not including) marker `:lastMarker`.\n\nWhenever any change is made to any entity in Kahua (create, update, delete, etc.), a _marker_ is created. Each marker has a strictly increasing unique ID (i.e., a marker with a higher ID is guaranteed to have ocurred after a marker with a lower ID). This can be used to retrive a list of entity ID's that have been created, updated, or deleted since a specific point.\n\nThe response body is an object with a single field `makers`, which is a list of objects with the following fields:\n\n- `id`: The unique ID of the marker\n    \n- `markerTime`: An ISO 8601 timestamp of the time the change occurred\n    \n- `entityDefName`: The full entity def name of the entity\n    \n- `entityId`: The `Id` of the entity\n    \n- `entityInstanceId`: The `InstanceId` of the entity\n    \n- `entityPartitionId`: The `PartitionId` of the entity\n    \n- `domainPartitionId`: The `DomainPartitionId` of the entity\n    \n- `type`: The change that happened, equal to one of the following:\n    \n    - `Add`\n        \n    - `Update`\n        \n    - `Delete`\n        \n    - `Invalidate`"
              },
              "response": [
                {
                  "name": "Get All DR Markers",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/entitydefs/:entityDef/markers/from/:lastMarker",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "entitydefs",
                        ":entityDef",
                        "markers",
                        "from",
                        ":lastMarker"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "50926912"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        },
                        {
                          "key": "entityDef",
                          "value": "DailyReport"
                        },
                        {
                          "key": "lastMarker",
                          "value": "56354756"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "3448"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "15"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:47:42 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"markers\": [\n        {\n            \"id\": 56354805,\n            \"markerTime\": \"2025-07-25T13:01:23.783\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50944246,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 56354806,\n            \"markerTime\": \"2025-07-25T13:01:23.890\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944247,\n            \"entityInstanceId\": 50944247,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 56354807,\n            \"markerTime\": \"2025-07-25T13:01:24.000\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944248,\n            \"entityInstanceId\": 50944248,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 56354813,\n            \"markerTime\": \"2025-07-25T13:05:18.963\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944248,\n            \"entityInstanceId\": 50944254,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 56354819,\n            \"markerTime\": \"2025-07-25T13:29:19.320\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944248,\n            \"entityInstanceId\": 50944254,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Delete\"\n        },\n        {\n            \"id\": 56354821,\n            \"markerTime\": \"2025-07-25T13:29:19.320\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944248,\n            \"entityInstanceId\": 50944254,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 56354832,\n            \"markerTime\": \"2025-07-25T13:39:08.943\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944262,\n            \"entityInstanceId\": 50944262,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 56354834,\n            \"markerTime\": \"2025-07-25T13:40:11.290\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50944264,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 56354836,\n            \"markerTime\": \"2025-07-25T13:40:48.240\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944247,\n            \"entityInstanceId\": 50944247,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Delete\"\n        },\n        {\n            \"id\": 56354838,\n            \"markerTime\": \"2025-07-25T13:40:48.223\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944247,\n            \"entityInstanceId\": 50944247,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 56354839,\n            \"markerTime\": \"2025-07-25T13:41:09.513\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50944266,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 56357556,\n            \"markerTime\": \"2025-07-28T13:46:52.853\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50946645,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 56357585,\n            \"markerTime\": \"2025-07-28T13:47:09.407\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50946672,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Update\"\n        },\n        {\n            \"id\": 56357586,\n            \"markerTime\": \"2025-07-28T13:47:14.923\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50946672,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Invalidate\"\n        },\n        {\n            \"id\": 56357589,\n            \"markerTime\": \"2025-07-28T13:47:14.923\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50946672,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Update\"\n        }\n    ]\n}"
                }
              ]
            },
            {
              "name": "5.3.4: Get Entities Markers by Type",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/apps/:appName/entitydefs/:entityDef/markers/from/:lastMarker/type/:markerType",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "apps",
                    ":appName",
                    "entitydefs",
                    ":entityDef",
                    "markers",
                    "from",
                    ":lastMarker",
                    "type",
                    ":markerType"
                  ],
                  "variable": [
                    {
                      "key": "appName",
                      "value": "kahua_AEC_DailyReport"
                    },
                    {
                      "key": "entityDef",
                      "value": "DailyReport"
                    },
                    {
                      "key": "lastMarker",
                      "value": "{{kpc-seed-marker}}"
                    },
                    {
                      "key": "markerType",
                      "value": "Add"
                    }
                  ]
                },
                "description": "[Markers - Deleted Entity Markers | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/delete-markers)\n\nThis request is similar to 5.3.3, but only returns markers with a `type` equal to `:markerType`. It also returns markers from all projects in the domain instead of just one."
              },
              "response": [
                {
                  "name": "Get DR Add Markers",
                  "originalRequest": {
                    "method": "GET",
                    "header": [],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/apps/:appName/entitydefs/:entityDef/markers/from/:lastMarker/type/:markerType",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "apps",
                        ":appName",
                        "entitydefs",
                        ":entityDef",
                        "markers",
                        "from",
                        ":lastMarker",
                        "type",
                        ":markerType"
                      ],
                      "variable": [
                        {
                          "key": "appName",
                          "value": "kahua_AEC_DailyReport"
                        },
                        {
                          "key": "entityDef",
                          "value": "DailyReport"
                        },
                        {
                          "key": "lastMarker",
                          "value": "56354756"
                        },
                        {
                          "key": "markerType",
                          "value": "Add"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "917"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "16"
                    },
                    {
                      "key": "Date",
                      "value": "Mon, 28 Jul 2025 13:47:55 GMT"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"markers\": [\n        {\n            \"id\": 56354805,\n            \"markerTime\": \"2025-07-25T13:01:23.783\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944246,\n            \"entityInstanceId\": 50944246,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 56354806,\n            \"markerTime\": \"2025-07-25T13:01:23.890\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944247,\n            \"entityInstanceId\": 50944247,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 56354807,\n            \"markerTime\": \"2025-07-25T13:01:24.000\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944248,\n            \"entityInstanceId\": 50944248,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        },\n        {\n            \"id\": 56354832,\n            \"markerTime\": \"2025-07-25T13:39:08.943\",\n            \"entityDefName\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"entityId\": 50944262,\n            \"entityInstanceId\": 50944262,\n            \"entityPartitionId\": 50926912,\n            \"domainPartitionId\": 50926912,\n            \"type\": \"Add\"\n        }\n    ]\n}"
                }
              ]
            },
            {
              "name": "5.3.5: (QRY) Query by Markers",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"MarkerFilter\": {\r\n        \"From\": {\r\n            \"MarkerId\": \"{{kpc-seed-marker}}\"\r\n            // Pick one ↕\r\n            // \"DateTime\": \"{{kpc-seed-isoTime}}\"\r\n        }\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":partitionId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "partitionId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "This query will only return entities that have been created or updated after a specific marker or timestamp. Note that deleted entities will not be included. For that, you would need to use either 5.3.3 or 5.3.4 to get the markers and then either 5.3.2 or 1.1.5 to get the actual entity (or entities with the latter). Similarly to 5.3.3 and 5.3.4, only entites after _**but not on**_ `MarkerId` (or `DateTime`) will be included.\n\nTo filter entities by their markers, use the `MarkerFilter` object, which has a single field `From`, which is an object with either:\n\n- `MarkerId`: The ID of a marker to query after\n    \n- `DateTime`: An ISO 8601 timestamp to query after\n    \n\n> If both `MarkerId` and `DateTime` are specified, then only entities that have both markers with an ID greater than `MarkerId` and a timestamp greater than `DateTime`"
              },
              "response": [
                {
                  "name": "MarkerId",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"MarkerFilter\": {\r\n        \"From\": {\r\n            \"MarkerId\": \"56359725\"\r\n        }\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "6742"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "47"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 30 Jul 2025 18:24:43 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 4,\n    \"entities\": [\n        {\n            \"id\": 50948256,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"LostDayDateNoticeDue\": \"2025-07-29T00:00:00\",\n            \"Date\": \"2025-07-29T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-29T16:00:23.723\",\n            \"ModifiedDateTime\": \"2025-07-30T16:01:04.793\",\n            \"TotalLaborUnits\": 0,\n            \"TotalInternalLabor\": 0,\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"Total\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 4,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50948256,\n            \"InstanceId\": 50950694,\n            \"Number\": \"0070\",\n            \"Notes\": \"2.2.1 UPDATED\",\n            \"LongLabel\": \"Daily Report: 7/29/2025\",\n            \"DetailLabel\": \"Daily Report: 7/29/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/29/2025\",\n            \"ShortLabel\": \"Daily Report: 7/29/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"PortableView\": {\n                \"identifier\": \"50948256-50950696\",\n                \"name\": \"Daily_Report_DailyReportViewReport_0070.en.en.pdf\"\n            },\n            \"AutomationLabel\": \"0070 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsEmployee\": false,\n                \"MarkupEnabled\": false,\n                \"IsDomainUser\": true,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainAdmin\": true,\n                \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                \"DomainPartitionId\": 0,\n                \"Instance\": 3,\n                \"PortableViewInstance\": 3,\n                \"PartitionId\": 49709712,\n                \"Id\": 49711149,\n                \"InstanceId\": 49711160,\n                \"EmailAddress\": \"bbuckley@kahua.com\",\n                \"FirstName\": \"Brandon\",\n                \"LastName\": \"Buckley\",\n                \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                \"SourceApp\": \"kahua_PeopleManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                \"ContactFullNameLabel\": \"Brandon Buckley\",\n                \"ShortLabel\": \"Brandon Buckley\",\n                \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                \"DetailLabel\": \"Name: Brandon Buckley\",\n                \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                \"ProfilePhoto\": {\n                    \"identifier\": \"49711149-49711154\",\n                    \"name\": \"default_profile_photo.png\"\n                },\n                \"Company\": {\n                    \"id\": 49709785,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                \"Office\": {\n                    \"id\": 49709783,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50948255,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"Date\": \"2025-07-29T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-29T16:00:23.613\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50948255,\n            \"InstanceId\": 50948255,\n            \"Number\": \"0069\",\n            \"Notes\": \"2.1.3 DR: Placeat repudiandae quo et.\",\n            \"LongLabel\": \"Daily Report: 7/29/2025\",\n            \"DetailLabel\": \"Daily Report: 7/29/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/29/2025\",\n            \"ShortLabel\": \"Daily Report: 7/29/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0069 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50948254,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"Date\": \"2025-07-29T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-29T16:00:23.503\",\n            \"TotalInternalLabor\": 0,\n            \"TotalLaborUnits\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 1,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50948254,\n            \"InstanceId\": 50948254,\n            \"Number\": \"0068\",\n            \"Notes\": \"2.1.2 DR: Animi quam consequuntur et natus deleniti est veniam.\",\n            \"LongLabel\": \"Daily Report: 7/29/2025\",\n            \"DetailLabel\": \"Daily Report: 7/29/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/29/2025\",\n            \"ShortLabel\": \"Daily Report: 7/29/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"AutomationLabel\": \"0068 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50947295,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"MarkupEnabled\": false,\n            \"LostDayDateNoticeDue\": \"2025-07-29T00:00:00\",\n            \"Date\": \"2025-07-29T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-29T14:30:25.377\",\n            \"ModifiedDateTime\": \"2025-07-30T16:04:10.117\",\n            \"TotalLaborUnits\": 0,\n            \"TotalInternalLabor\": 0,\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"Total\": 0,\n            \"CompanyCount\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"Instance\": 4,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50947295,\n            \"InstanceId\": 50950699,\n            \"Number\": \"0025\",\n            \"Notes\": \"2.2.1 DR: updated again\",\n            \"LongLabel\": \"Daily Report: 7/29/2025\",\n            \"DetailLabel\": \"Daily Report: 7/29/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/29/2025\",\n            \"ShortLabel\": \"Daily Report: 7/29/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"PortableView\": {\n                \"identifier\": \"50947295-50950701\",\n                \"name\": \"Daily_Report_DailyReportViewReport_0025.en.en.pdf\"\n            },\n            \"AutomationLabel\": \"0025 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56363138\n}"
                },
                {
                  "name": "DateTime",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"PropertyName\": \"Query\",\r\n    \"EntityDef\": \"kahua_AEC_DailyReport.DailyReport\",\r\n    \"MarkerFilter\": {\r\n        \"From\": {\r\n            \"DateTime\": \"2025-07-30T16:00:23.230Z\"\r\n        }\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:partitionId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":partitionId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "partitionId",
                          "value": "50926912"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Content-Length",
                      "value": "4362"
                    },
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.autodesk.com *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' *.kahua.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;frame-ancestors 'none' https://devdiagnosticsservice.kahua.com https://devdiagnosticslaunch.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "63"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 30 Jul 2025 18:26:16 GMT"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 50948256,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"LostDayDateNoticeDue\": \"2025-07-29T00:00:00\",\n            \"Date\": \"2025-07-29T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-29T16:00:23.723\",\n            \"ModifiedDateTime\": \"2025-07-30T16:01:04.793\",\n            \"TotalLaborUnits\": 0,\n            \"TotalInternalLabor\": 0,\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"Total\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"CompanyCount\": 0,\n            \"Instance\": 4,\n            \"DomainPartitionId\": 50926912,\n            \"PartitionId\": 50926912,\n            \"Id\": 50948256,\n            \"InstanceId\": 50950694,\n            \"Number\": \"0070\",\n            \"Notes\": \"2.2.1 UPDATED\",\n            \"LongLabel\": \"Daily Report: 7/29/2025\",\n            \"DetailLabel\": \"Daily Report: 7/29/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/29/2025\",\n            \"ShortLabel\": \"Daily Report: 7/29/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"PortableView\": {\n                \"identifier\": \"50948256-50950696\",\n                \"name\": \"Daily_Report_DailyReportViewReport_0070.en.en.pdf\"\n            },\n            \"AutomationLabel\": \"0070 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsEmployee\": false,\n                \"MarkupEnabled\": false,\n                \"IsDomainUser\": true,\n                \"IsInSyncWithCommunity\": true,\n                \"IsPublished\": true,\n                \"IsDomainAdmin\": true,\n                \"ActivationDateTime\": \"2025-05-19T17:53:30.927\",\n                \"CreatedDateTime\": \"2025-05-19T17:53:31.200\",\n                \"ModifiedDateTime\": \"2025-05-19T17:53:51.683\",\n                \"DomainPartitionId\": 0,\n                \"Instance\": 3,\n                \"PortableViewInstance\": 3,\n                \"PartitionId\": 49709712,\n                \"Id\": 49711149,\n                \"InstanceId\": 49711160,\n                \"EmailAddress\": \"bbuckley@kahua.com\",\n                \"FirstName\": \"Brandon\",\n                \"LastName\": \"Buckley\",\n                \"PersonId\": \"ad90fc9a-85a0-443d-a294-99074e079225\",\n                \"SourceApp\": \"kahua_PeopleManager\",\n                \"AppNameLabel\": \"[AppLabel]\",\n                \"ContactCompanyLabel\": \"Brandon Buckley - BBuckleyCo\",\n                \"ContactFullNameLabel\": \"Brandon Buckley\",\n                \"ShortLabel\": \"Brandon Buckley\",\n                \"CompanyContactLabel\": \"BBuckleyCo - Brandon Buckley\",\n                \"LongLabel\": \"Brandon Buckley (bbuckley@kahua.com)\",\n                \"DetailLabel\": \"Name: Brandon Buckley\",\n                \"FullTextIndexContent\": \"Brandon Buckley BBuckleyCo\",\n                \"ProfilePhoto\": {\n                    \"identifier\": \"49711149-49711154\",\n                    \"name\": \"default_profile_photo.png\"\n                },\n                \"Company\": {\n                    \"id\": 49709785,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                \"Office\": {\n                    \"id\": 49709783,\n                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 50947295,\n            \"entityDef\": \"kahua_AEC_DailyReport.DailyReport\",\n            \"hubPath\": \"kahua_AEC_DailyReport.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"AddWeatherOnSave\": false,\n            \"CopyDailyReportMaterials\": false,\n            \"IsLostDay\": false,\n            \"MarkupEnabled\": false,\n            \"LostDayDateNoticeDue\": \"2025-07-29T00:00:00\",\n            \"Date\": \"2025-07-29T00:00:00\",\n            \"CreatedDateTime\": \"2025-07-29T14:30:25.377\",\n            \"ModifiedDateTime\": \"2025-07-30T16:04:10.117\",\n            \"TotalLaborUnits\": 0,\n            \"TotalInternalLabor\": 0,\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"Total\": 0,\n            \"CompanyCount\": 0,\n            \"LostDayDateDueOffset\": 0,\n            \"Instance\": 4,\n            \"PartitionId\": 50926912,\n            \"DomainPartitionId\": 50926912,\n            \"Id\": 50947295,\n            \"InstanceId\": 50950699,\n            \"Number\": \"0025\",\n            \"Notes\": \"2.2.1 DR: updated again\",\n            \"LongLabel\": \"Daily Report: 7/29/2025\",\n            \"DetailLabel\": \"Daily Report: 7/29/2025\",\n            \"RecycleBinLabel\": \"Daily Report: 7/29/2025\",\n            \"ShortLabel\": \"Daily Report: 7/29/2025\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"PortableView\": {\n                \"identifier\": \"50947295-50950701\",\n                \"name\": \"Daily_Report_DailyReportViewReport_0025.en.en.pdf\"\n            },\n            \"AutomationLabel\": \"0025 Brandon Buckley\",\n            \"CreatedBy\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Author\": {\n                \"id\": 49711149,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 50926912,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 56363138\n}"
                }
              ]
            }
          ],
          "description": "This section details requests regarding Entities."
        }
      ],
      "description": "These projects provide the ability to retrieve and query data associated with Projects, Applications, and Entities."
    },
    {
      "name": "6: Cost Management",
      "item": [
        {
          "name": "6.1: Work Breakdown (WBS)",
          "item": [
            {
              "name": "6.1.1: Get All WBS Items",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/workbreakdown/items/list/all?units=all",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "workbreakdown",
                    "items",
                    "list",
                    "all"
                  ],
                  "query": [
                    {
                      "key": "units",
                      "value": "all",
                      "description": "supply a comma separated list of units, or specify\nall to retrieve the entire collection. We highly recommend only returning the data you need to reduce\nthe load on the platform and get your data back as fast as possible."
                    }
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": ":projectId"
                    }
                  ]
                },
                "description": "[WBS Items - List | Kahua Items](https://build.kahua.com/en/Partners/Integration/Endpoints/WBS-Items-List)\n\nRetrieves the details of all WBS items contained in `:projectId`\n\n- This can be used to validate all WBS items and their associated totals across each app"
              },
              "response": [
                {
                  "name": "6.1.1: Get All WBS Items",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/workbreakdown/items/list/all?units=all",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "workbreakdown",
                        "items",
                        "list",
                        "all"
                      ],
                      "query": [
                        {
                          "key": "units",
                          "value": "all",
                          "description": "supply a comma separated list of units, or specify\nall to retrieve the entire collection. We highly recommend only returning the data you need to reduce\nthe load on the platform and get your data back as fast as possible."
                        }
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "59241830"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 16:34:52 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "659"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"items\": [\n        {\n            \"id\": 59894457,\n            \"itemkey\": \"746\",\n            \"code\": \"746\",\n            \"description\": \"sit maxime veritatis\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": []\n        },\n        {\n            \"id\": 59892873,\n            \"itemkey\": \"0001|18|100|OVH\",\n            \"code\": \"0001.18100.OVH\",\n            \"description\": \"Fee Overhead\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892869,\n            \"itemkey\": \"0001|18|100|MAT\",\n            \"code\": \"0001.18100.MAT\",\n            \"description\": \"Material markup\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892865,\n            \"itemkey\": \"0001|18|100|LAB\",\n            \"code\": \"0001.18100.LAB\",\n            \"description\": \"Labor markup\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892861,\n            \"itemkey\": \"0001|18|100\",\n            \"code\": \"0001.18100\",\n            \"description\": \"Markup detail\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892857,\n            \"itemkey\": \"0001|18\",\n            \"code\": \"0001.18\",\n            \"description\": \"Markups\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892853,\n            \"itemkey\": \"0001|15|400|MAT\",\n            \"code\": \"0001.15400.MAT\",\n            \"description\": \"Plumbing Fixtures and Equipment - Material\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892849,\n            \"itemkey\": \"0001|15|400|LAB\",\n            \"code\": \"0001.15400.LAB\",\n            \"description\": \"Plumbing Fixtures and Equipment - Labor\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892845,\n            \"itemkey\": \"0001|15|400\",\n            \"code\": \"0001.15400\",\n            \"description\": \"Plumbing Fixtures and Equipment\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892841,\n            \"itemkey\": \"0001|15|700|MAT\",\n            \"code\": \"0001.15700.MAT\",\n            \"description\": \"HVAC Equipment - Material\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892837,\n            \"itemkey\": \"0001|15|700|LAB\",\n            \"code\": \"0001.15700.LAB\",\n            \"description\": \"HVAC Equipment - Labor\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892833,\n            \"itemkey\": \"0001|15|700\",\n            \"code\": \"0001.15700\",\n            \"description\": \"HVAC Equipment\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892829,\n            \"itemkey\": \"0001|15\",\n            \"code\": \"0001.15\",\n            \"description\": \"Mechanical\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892825,\n            \"itemkey\": \"0001|03|400|MAT\",\n            \"code\": \"0001.03400.MAT\",\n            \"description\": \"Precast Concrete - Material\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892821,\n            \"itemkey\": \"0001|03|400|LAB\",\n            \"code\": \"0001.03400.LAB\",\n            \"description\": \"Precast Concrete - Labor\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892817,\n            \"itemkey\": \"0001|03|400\",\n            \"code\": \"0001.03400\",\n            \"description\": \"Precast Concrete\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892813,\n            \"itemkey\": \"0001|03|100|MAT\",\n            \"code\": \"0001.03100.MAT\",\n            \"description\": \"Concrete Forms and Accessories - Material\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892809,\n            \"itemkey\": \"0001|03|100|LAB\",\n            \"code\": \"0001.03100.LAB\",\n            \"description\": \"Concrete Forms and Accessories - Labor\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892805,\n            \"itemkey\": \"0001|03|100\",\n            \"code\": \"0001.03100\",\n            \"description\": \"Concrete Forms and Accessories\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892801,\n            \"itemkey\": \"0001|03\",\n            \"code\": \"0001.03\",\n            \"description\": \"Concrete\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892797,\n            \"itemkey\": \"0001|16|202|MAT\",\n            \"code\": \"0001.16202.MAT\",\n            \"description\": \"Light fixtures material\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892793,\n            \"itemkey\": \"0001|16|202|LAB\",\n            \"code\": \"0001.16202.LAB\",\n            \"description\": \"Light fixtures labor\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892789,\n            \"itemkey\": \"0001|16|202\",\n            \"code\": \"0001.16202\",\n            \"description\": \"Light fixtures\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892785,\n            \"itemkey\": \"0001|16|200|MAT\",\n            \"code\": \"0001.16200.MAT\",\n            \"description\": \"Wiring Material\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892781,\n            \"itemkey\": \"0001|16|200|LAB\",\n            \"code\": \"0001.16200.LAB\",\n            \"description\": \"Wiring Labor\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892777,\n            \"itemkey\": \"0001|16|200\",\n            \"code\": \"0001.16200\",\n            \"description\": \"Wiring\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892773,\n            \"itemkey\": \"0001|16\",\n            \"code\": \"0001.16\",\n            \"description\": \"Electrical\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 59892770,\n            \"itemkey\": \"0001\",\n            \"code\": \"0001\",\n            \"description\": \"My Project\",\n            \"units\": [\n                {\n                    \"name\": \"DescriptionTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueClientContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangePendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"BudgetChangeApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"IssueContractApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeRequestApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ContractChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRequestedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRetainedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesReceivedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesDueTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"ReceivablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesBilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesWithheldTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOutstandingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOpenTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesRemainingTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"PayablesOverbilledTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"SOVApprovedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVDraftTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVSubmittedTotalValue\",\n                    \"total\": 0\n                },\n                {\n                    \"name\": \"FundingSOVApprovedTotalValue\",\n                    \"total\": 0\n                }\n            ],\n            \"budgetItems\": [\n                {\n                    \"name\": \"Estimated\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                },\n                {\n                    \"name\": \"Approved\",\n                    \"quantity\": 0,\n                    \"unitValue\": 0,\n                    \"totalValue\": 0\n                }\n            ]\n        }\n    ]\n}"
                }
              ]
            },
            {
              "name": "6.1.2: Get Single WBS Item",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/workbreakdown/items/:itemId/info?units=all",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "workbreakdown",
                    "items",
                    ":itemId",
                    "info"
                  ],
                  "query": [
                    {
                      "key": "units",
                      "value": "all",
                      "description": "supply a comma separated list of units, or specify\nall to retrieve the entire collection. We highly recommend only returning the data you need to reduce\nthe load on the platform and get your data back as fast as possible."
                    }
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "itemId",
                      "value": "",
                      "description": "To Do: input a valid Id of a single WBS item"
                    }
                  ]
                },
                "description": "Retrieves the WBS item assigned to `:itemId`\n\n- Can be used to validate totals across different apps that reference the same WBS code."
              },
              "response": [
                {
                  "name": "6.1.2: Get Single WBS Item",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/workbreakdown/items/:itemId/info?units=all",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "workbreakdown",
                        "items",
                        ":itemId",
                        "info"
                      ],
                      "query": [
                        {
                          "key": "units",
                          "value": "all",
                          "description": "supply a comma separated list of units, or specify\nall to retrieve the entire collection. We highly recommend only returning the data you need to reduce\nthe load on the platform and get your data back as fast as possible."
                        }
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        },
                        {
                          "key": "itemId",
                          "value": "59894457",
                          "description": "To Do: input a valid Id of a single WBS item"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 18:32:29 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "353"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"id\": 59894457,\n    \"itemkey\": \"746\",\n    \"code\": \"746\",\n    \"description\": \"sit maxime veritatis\",\n    \"units\": [\n        {\n            \"name\": \"DescriptionTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"IssueClientContractProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"IssueClientContractPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"IssueClientContractApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractChangeRequestProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractChangeRequestPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractChangeRequestApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractChangeOrderProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractChangeOrderPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ClientContractChangeOrderApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetAdjustmentProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetAdjustmentPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetAdjustmentApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetChangeProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetChangePendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"BudgetChangeApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"IssueContractProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"IssueContractPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"IssueContractApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractChangeRequestProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractChangeRequestPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractChangeRequestApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractChangeOrderProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractChangeOrderPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ContractChangeOrderApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderChangeOrderProjectedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderChangeOrderPendingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderChangeOrderApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderInvoiceBilledTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PurchaseOrderInvoiceRemittedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ReceivablesRequestedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ReceivablesRetainedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ReceivablesReceivedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ReceivablesDueTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ReceivablesOpenTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"ReceivablesRemainingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PayablesBilledTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PayablesWithheldTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PayablesRemittedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PayablesOutstandingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PayablesOpenTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PayablesRemainingTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"PayablesOverbilledTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"CostPendingGeneralInvoicesTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"CostApprovedGeneralInvoicesTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"SOVDraftTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"SOVSubmittedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"SOVApprovedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"FundingSOVDraftTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"FundingSOVSubmittedTotalValue\",\n            \"total\": 0\n        },\n        {\n            \"name\": \"FundingSOVApprovedTotalValue\",\n            \"total\": 0\n        }\n    ],\n    \"budgetItems\": []\n}"
                }
              ]
            },
            {
              "name": "6.1.4: Add Top Level WBS Item In Project",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/workbreakdown/items/add?itemKey={{$randomInt}}&description={{$randomLoremWords}}",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "workbreakdown",
                    "items",
                    "add"
                  ],
                  "query": [
                    {
                      "key": "itemKey",
                      "value": "{{$randomInt}}"
                    },
                    {
                      "key": "description",
                      "value": "{{$randomLoremWords}}"
                    }
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    }
                  ]
                },
                "description": "[WBS Items - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/WBS-Items-Add)\n\nAdds a WBS item into `:projectId`. `itemKey` is a required paramter for this endpoint:\n\n- `itemKey` is the pipe delimited location in the hierarchy. For multi-segment itemKey’s, parent segments must exist or an error will be thrown (see Section `6.1.5` for more on Sub-Level WBS items)."
              },
              "response": [
                {
                  "name": "6.1.4: Add WBS Item In Project",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/workbreakdown/items/add?itemKey={{$randomInt}}&description={{$randomLoremWords}}",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "workbreakdown",
                        "items",
                        "add"
                      ],
                      "query": [
                        {
                          "key": "itemKey",
                          "value": "{{$randomInt}}"
                        },
                        {
                          "key": "description",
                          "value": "{{$randomLoremWords}}"
                        }
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "{{project}}"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 16:34:09 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "610"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"id\": 59894457,\n    \"itemkey\": \"746\",\n    \"code\": \"746\",\n    \"description\": \"sit maxime veritatis\",\n    \"units\": [],\n    \"budgetItems\": []\n}"
                }
              ]
            },
            {
              "name": "6.1.5: Add Sub Level WBS Item In Project",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:ProjectId/workbreakdown/items/add/746|00/This%20is%20a%20sub-test2",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":ProjectId",
                    "workbreakdown",
                    "items",
                    "add",
                    "746|00",
                    "This%20is%20a%20sub-test2"
                  ],
                  "variable": [
                    {
                      "key": "ProjectId",
                      "value": "59241830"
                    }
                  ]
                },
                "description": "[WBS Items - Add | Kahua Wiki](https://build.kahua.com/en/Partners/Integration/Endpoints/WBS-Items-Add)\n\nAdds a WBS item into `:projectId` and under the **Parent WBS item** .\n\n- To create a sub-level WBS item, the **ItemKey of the parent WBS item is required**. The ItemKey for the new sub-level WBS item is formed by appending the desired activity code to the parent ItemKey using the \"`|\"` character.\n    \n- The following example shows how to add a WBS item that is **NOT** at the top level. We will use the Itemkey generated in 6.1.4 which is `746.`\n    \n- In the Request URL, we reference the parent WBS item (`746)` and append the desired sub-level code using the \"`|`\". In this example, `00` is appended to create the new sub-level WBS item.\n    \n- You can then add a description by appending it after a forward slash (`/`) followed by the desired description text."
              },
              "response": [
                {
                  "name": "6.1.5: Add Sub Level WBS Item In Project",
                  "originalRequest": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:ProjectId/workbreakdown/items/add/746|00/This%20is%20a%20sub-test",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":ProjectId",
                        "workbreakdown",
                        "items",
                        "add",
                        "746|00",
                        "This%20is%20a%20sub-test"
                      ],
                      "variable": [
                        {
                          "key": "ProjectId",
                          "value": "59241830"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 19:15:59 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "722"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [
                    {
                      "expires": "Invalid Date",
                      "domain": "",
                      "path": ""
                    }
                  ],
                  "body": "{\n    \"id\": 59900215,\n    \"itemkey\": \"746|00\",\n    \"code\": \"746.00\",\n    \"description\": \"This is a sub-test\",\n    \"units\": [],\n    \"budgetItems\": []\n}"
                }
              ]
            }
          ],
          "description": "These API calls associated with Work Breakdown (WBS) provide the hierarchical structure that all project data references, allowing data to be validated and tracked for consistency across the project."
        },
        {
          "name": "6.2: Expenses",
          "item": [
            {
              "name": "6.2.1: (QRY) Pay Requests",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"PropertyName\": \"Query\",\n  \"EntityDef\": \"kahua_ContractInvoice.ContractInvoice\",\n  \"ImplicitsDisabled\": \"True\",\n  \"Condition\": [\n    {\n      \"PropertyName\": \"Data\",\n      \"Type\": \"EqualTo\",\n      \"Path\": \"Status\",\n      \"Value\": \"Billed\"\n    }\n  ],\n  \"Explicits\": [\n    {\n      \"PropertyName\": \"Data\",\n      \"Path\": \"Status\"\n    },\n    {\n      \"PropertyName\": \"Data\",\n      \"Path\": \"HoldReason\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "0"
                    }
                  ]
                },
                "description": "Query endpoint for pay requests"
              },
              "response": [
                {
                  "name": "6.2.1: (QRY) Pay Requests",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"PropertyName\": \"Query\",\n  \"EntityDef\": \"kahua_ContractInvoice.ContractInvoice\",\n  \"ImplicitsDisabled\": \"True\",\n  \"Condition\": [\n    {\n      \"PropertyName\": \"Data\",\n      \"Type\": \"EqualTo\",\n      \"Path\": \"Status\",\n      \"Value\": \"Billed\"\n    }\n  ],\n  \"Explicits\": [\n    {\n      \"PropertyName\": \"Data\",\n      \"Path\": \"Status\"\n    },\n    {\n      \"PropertyName\": \"Data\",\n      \"Path\": \"HoldReason\"\n    }\n  ]\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "59241830"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json",
                      "description": "",
                      "type": "text"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 16:09:44 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "18"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 59892030,\n            \"entityDef\": \"kahua_ContractInvoice.ContractInvoice\",\n            \"hubPath\": \"kahua_ContractInvoice.KahuaWorkflow\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsTaxable\": false,\n            \"ItemsIncludeQuantity\": false,\n            \"InitiatedBySubmitter\": false,\n            \"TaxAllowsManualEntry\": false,\n            \"RealPaymentAmountCalculatedBySystem\": false,\n            \"InvoiceIsManualRetainage\": false,\n            \"AllowItemCostUnitEntry\": false,\n            \"IncludeAllChangeOrders\": false,\n            \"CurrencyRateLastModifiedDateTime\": \"2026-01-28T16:08:45.587\",\n            \"CreatedDateTime\": \"2026-01-28T16:08:45.587\",\n            \"PeriodFrom\": \"2026-05-07T00:00:00\",\n            \"PeriodTo\": \"2027-03-12T00:00:00\",\n            \"ModifiedDateTime\": \"2026-01-28T16:08:57.530\",\n            \"CurrencyRateToDocument\": 1,\n            \"CurrencyRateToDomain\": 1,\n            \"BalanceToFinishWithRetainage\": 0,\n            \"MaterialPresentlyStored\": 0,\n            \"MaterialRetainage\": 0,\n            \"PreviousRetainage\": 0,\n            \"TotalRetainage\": 0,\n            \"WorkRetainage\": 0,\n            \"PeriodRetainage\": 0,\n            \"PayRequestOverbilled\": 0,\n            \"OverbilledTotalContribution\": 0,\n            \"PreviousOverbilledTotalToDate\": 0,\n            \"BalanceToFinish\": 0,\n            \"TotalToDatePercent\": 100,\n            \"ContractApprovedChanges\": 1800,\n            \"PreviousBalanceToFinish\": 163400,\n            \"PreviousBalanceToFinishWithRetainage\": 163400,\n            \"PreviousTotalEarned\": 163400,\n            \"PreviousWorkCompleted\": 163400,\n            \"WorkCompletedThisPeriod\": 163400,\n            \"CurrentPaymentDue\": 163400,\n            \"ContractOriginalAmount\": 325000,\n            \"TotalEarnedToDate\": 326800,\n            \"TotalToDate\": 326800,\n            \"WorkCompletedToDate\": 326800,\n            \"ScheduledValue\": 326800,\n            \"CurrencyPrecisionOverride\": -1,\n            \"Instance\": 4,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateId\": 2690,\n            \"DomainPartitionId\": 59241830,\n            \"PartitionId\": 59241830,\n            \"Id\": 59892030,\n            \"InstanceId\": 59892065,\n            \"CurrencyCode\": \"USD\",\n            \"Number\": \"0002\",\n            \"TaxSettingInclude\": \"SeparateLineItem\",\n            \"Step\": \"Active\",\n            \"CostUnitEntryType\": \"LumpSum\",\n            \"WorkflowStatus\": \"Manually set to Billed\",\n            \"LongLabel\": \"0002 HDuarteCo\",\n            \"DetailLabel\": \"0002 HDuarteCo\",\n            \"RecycleBinLabel\": \"0002 HDuarteCo\",\n            \"ShortLabel\": \"0002 HDuarteCo\",\n            \"AppNameLabel\": \"Pay Requests\",\n            \"Status\": {\n                \"id\": 24612045,\n                \"entityDef\": \"kahua_Cost.CostItemStatus\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": [],\n                \"IsExchangeEntity\": false,\n                \"IsDefault\": false,\n                \"UpdateCurrencyRate\": false,\n                \"MarkupEnabled\": false,\n                \"CreatedDateTime\": \"2023-05-15T13:17:45.800\",\n                \"ModifiedDateTime\": \"2026-01-28T15:48:22.853\",\n                \"PartitionId\": -1,\n                \"DomainPartitionId\": 0,\n                \"Instance\": 2,\n                \"Rank\": 2,\n                \"PortableViewInstance\": 2,\n                \"Id\": 24612045,\n                \"InstanceId\": 59890827,\n                \"SourceApp\": \"kahua_ContractInvoice\",\n                \"Name\": \"Billed\",\n                \"Label\": \"[Name]\",\n                \"ClientId\": \"ContractInvoice_Status_Billed\",\n                \"AppNameLabel\": \"Pay Requests\",\n                \"ShortLabel\": \"Billed\"\n            }\n        },\n        {\n            \"id\": 59891942,\n            \"entityDef\": \"kahua_ContractInvoice.ContractInvoice\",\n            \"hubPath\": \"kahua_ContractInvoice.KahuaWorkflow\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsTaxable\": false,\n            \"ItemsIncludeQuantity\": false,\n            \"InitiatedBySubmitter\": false,\n            \"TaxAllowsManualEntry\": false,\n            \"RealPaymentAmountCalculatedBySystem\": false,\n            \"InvoiceIsManualRetainage\": false,\n            \"AllowItemCostUnitEntry\": false,\n            \"IncludeAllChangeOrders\": false,\n            \"PeriodFrom\": \"2025-07-10T00:00:00\",\n            \"CurrencyRateLastModifiedDateTime\": \"2026-01-28T16:05:59.987\",\n            \"CreatedDateTime\": \"2026-01-28T16:05:59.993\",\n            \"PeriodTo\": \"2027-01-14T00:00:00\",\n            \"ModifiedDateTime\": \"2026-01-28T16:06:18.097\",\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"MaterialRetainage\": 0,\n            \"PreviousBalanceToFinish\": 0,\n            \"PreviousBalanceToFinishWithRetainage\": 0,\n            \"PreviousRetainage\": 0,\n            \"PreviousTotalEarned\": 0,\n            \"PreviousWorkCompleted\": 0,\n            \"TotalRetainage\": 0,\n            \"WorkRetainage\": 0,\n            \"PeriodRetainage\": 0,\n            \"PayRequestOverbilled\": 0,\n            \"OverbilledTotalContribution\": 0,\n            \"PreviousOverbilledTotalToDate\": 0,\n            \"MaterialPresentlyStored\": 0,\n            \"TotalToDatePercent\": 50,\n            \"ContractApprovedChanges\": 1800,\n            \"BalanceToFinishWithRetainage\": 163400,\n            \"CurrentPaymentDue\": 163400,\n            \"TotalEarnedToDate\": 163400,\n            \"TotalToDate\": 163400,\n            \"WorkCompletedThisPeriod\": 163400,\n            \"WorkCompletedToDate\": 163400,\n            \"BalanceToFinish\": 163400,\n            \"ContractOriginalAmount\": 325000,\n            \"ScheduledValue\": 326800,\n            \"CurrencyPrecisionOverride\": -1,\n            \"Instance\": 4,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateId\": 2690,\n            \"PartitionId\": 59241830,\n            \"DomainPartitionId\": 59241830,\n            \"Id\": 59891942,\n            \"InstanceId\": 59891966,\n            \"CurrencyCode\": \"USD\",\n            \"TaxSettingInclude\": \"SeparateLineItem\",\n            \"Step\": \"Active\",\n            \"Number\": \"0001\",\n            \"CostUnitEntryType\": \"LumpSum\",\n            \"WorkflowStatus\": \"Manually set to Billed\",\n            \"LongLabel\": \"0001 HDuarteCo\",\n            \"DetailLabel\": \"0001 HDuarteCo\",\n            \"RecycleBinLabel\": \"0001 HDuarteCo\",\n            \"ShortLabel\": \"0001 HDuarteCo\",\n            \"Notes\": \"Test PR\",\n            \"AppNameLabel\": \"Pay Requests\",\n            \"Status\": {\n                \"id\": 24612045,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 66396555\n}"
                }
              ]
            },
            {
              "name": "6.2.2: (QRY) Contracts",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"PropertyName\": \"Query\",\n  \"EntityDef\": \"kahua_Contract.Contract\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "0"
                    }
                  ]
                },
                "description": "Queries for all Contracts that fit within the selected conditions (put no conditions to retrieve all Contracts)\n\n- There are two different apps that contain Contracts, Expenses and Funding. Currently this query is set up to retrieve Contracts from the Expenses app. If you want to query for Funding Contracts, change the `\"entityDef\"` to `\"kahua_ClientContract.ClientContact\"`"
              },
              "response": [
                {
                  "name": "6.2.2: (QRY) Contracts",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"PropertyName\": \"Query\",\n  \"EntityDef\": \"kahua_Contract.Contract\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "59241830"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 16:02:24 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "237"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 59891533,\n            \"entityDef\": \"kahua_Contract.Contract\",\n            \"hubPath\": \"kahua_Contract.KahuaWorkflow\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsTaxable\": false,\n            \"LiquidatedDamages\": false,\n            \"ItemsIncludeQuantity\": false,\n            \"UseSOVBreakdown\": false,\n            \"LinkChangeOrderItemsToContractItems\": false,\n            \"AllowItemCostUnitEntry\": false,\n            \"EnablePayRequestQuantity\": false,\n            \"MultiProjectItemsEnabled\": false,\n            \"TaxAllowsManualEntry\": true,\n            \"CurrencyRateLastModifiedDateTime\": \"2026-01-28T16:01:19.567\",\n            \"CreatedDateTime\": \"2026-01-28T16:01:19.570\",\n            \"ModifiedDateTime\": \"2026-01-28T16:02:09.557\",\n            \"CurrencyRateToDocument\": 1,\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyPrecisionOverride\": -1,\n            \"Instance\": 5,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateId\": 2690,\n            \"DomainPartitionId\": 59241830,\n            \"PartitionId\": 59241830,\n            \"Id\": 59891533,\n            \"InstanceId\": 59891707,\n            \"CurrencyCode\": \"USD\",\n            \"Number\": \"0002\",\n            \"OverbillingLimits\": \"OverbillingAllowed\",\n            \"TaxEntryType\": \"None\",\n            \"CostUnitEntryType\": \"TotalValue\",\n            \"TaxSettingInclude\": \"SeparateLineItem\",\n            \"Description\": \"Test Contract 2\",\n            \"Step\": \"Active\",\n            \"WorkflowStatus\": \"Manually set to Approved\",\n            \"DetailLabel\": \"0002 -  - Test Contract 2\",\n            \"RecycleBinLabel\": \"0002 -  - Test Contract 2\",\n            \"LongLabel\": \"0002 -  - Test Contract 2\",\n            \"AppNameLabel\": \"Expense Contracts\",\n            \"ShortLabel\": \"0002 - \",\n            \"CostItemsTotalTotalValue\": 325000,\n            \"CostItemsNonTaxTotalTotalValue\": 325000,\n            \"ContractApprovedTotalValue\": 325000,\n            \"ContractApprovedItemTotalAmount\": 325000,\n            \"PortableView\": {\n                \"identifier\": \"59891533-59891724\",\n                \"name\": \"ContractViewReport.0002.en.en.pdf\"\n            },\n            \"Items\": [\n                {\n                    \"id\": 59891534,\n                    \"entityDef\": \"kahua_Contract.ContractItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                {\n                    \"id\": 59891709,\n                    \"entityDef\": \"kahua_Contract.ContractItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"Status\": {\n                \"id\": 59890706,\n                \"entityDef\": \"kahua_Cost.CostItemStatus\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"CreatedBy\": {\n                \"id\": 24611666,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 59241830,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 59241830,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 59888201,\n            \"entityDef\": \"kahua_Contract.Contract\",\n            \"hubPath\": \"kahua_Contract.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsTaxable\": false,\n            \"TaxAllowsManualEntry\": false,\n            \"AllowItemCostUnitEntry\": false,\n            \"MarkupEnabled\": false,\n            \"CurrencyRateLastModifiedDateTime\": \"2026-01-28T14:38:33.370\",\n            \"CreatedDateTime\": \"2026-01-28T14:38:33.463\",\n            \"ScheduleStart\": \"2026-01-14T00:00:00\",\n            \"ModifiedDateTime\": \"2026-01-28T14:51:25.183\",\n            \"ScheduleEnd\": \"2026-10-09T00:00:00\",\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"Instance\": 3,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateId\": 2690,\n            \"PartitionId\": 59241830,\n            \"DomainPartitionId\": 59241830,\n            \"Id\": 59888201,\n            \"InstanceId\": 59888311,\n            \"Number\": \"0001\",\n            \"CurrencyCode\": \"USD\",\n            \"OverbillingLimits\": \"OverbillingAllowed\",\n            \"CostUnitEntryType\": \"UnitPrice\",\n            \"TaxSettingInclude\": \"SeparateLineItem\",\n            \"Description\": \"Test Contract 01\",\n            \"Type\": \"Commercial\",\n            \"AppNameLabel\": \"Expense Contracts\",\n            \"ShortLabel\": \"0001 - \",\n            \"DetailLabel\": \"0001 -  - Test Contract 01\",\n            \"RecycleBinLabel\": \"0001 -  - Test Contract 01\",\n            \"LongLabel\": \"0001 -  - Test Contract 01\",\n            \"PortableView\": {\n                \"identifier\": \"59888201-59888324\",\n                \"name\": \"Contract_ContractViewReport_0001.en.en.pdf\"\n            },\n            \"CreatedBy\": {\n                \"id\": 24611666,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 59241830,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Items\": [\n                {\n                    \"id\": 59888202,\n                    \"entityDef\": \"kahua_Contract.ContractItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"Status\": {\n                \"id\": 24612410,\n                \"entityDef\": \"kahua_Cost.CostItemStatus\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 59241830,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 66396122\n}"
                }
              ]
            },
            {
              "name": "6.2.3: (ACT) General Invoice",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"listIdentifier\": 0,\r\n    \"listId\": 0,\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"General_Invoice\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"New\": {},\r\n                \"Set\": \"General_Invoice\",\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"entities\": [\r\n                {\r\n                    \"hubPath\": \"kahua_GeneralInvoices.Default\\\\Start\",\r\n                    \"entityDef\": \"kahua_GeneralInvoices.General_Invoice\",\r\n                    \"attributes\": [\r\n                        {\r\n                            \"name\": \"Number\",\r\n                            \"value\": \"19\"\r\n                        },\r\n                        {\r\n                            \"entities\": [\r\n                                {\r\n                                    \"hubPath\": \"\",\r\n                                    \"entityDef\": \"kahua_GeneralInvoices.General_Invoice_Invoice_Item\",\r\n                                    \"attributes\": [\r\n                                        {\r\n                                            \"name\": \"CostApprovedGeneralInvoicesUnitValue\",\r\n                                            \"value\": \"201371\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"Number\",\r\n                                            \"value\": \"0000118493 11 B\"\r\n                                        },\r\n                                        {\r\n                                            // utilize 6.1.1: Get All WBS Items to find which activity code you'd like to use for this record\r\n                                            \"name\": \"WorkBreakdownItem\",\r\n                                            \"entities\": [\r\n                                                {\r\n                                                    \"entityDef\": \"kahua_WorkBreakdown.Item\",\r\n                                                    \"referenceType\": \"Resolve\",\r\n                                                    \"referenceResolveAttributePath\": \"Code\",\r\n                                                    \"referenceResolveAttributeValue\": \"0001.18100.OVH\"\r\n                                                }\r\n                                            ]\r\n                                        },\r\n                                        {\r\n                                            // utilize 4.2.3: Get Companies to find the company you'd like to refer to\r\n                                            \"name\": \"FromCompany\",\r\n                                            \"entities\": [\r\n                                                {\r\n                                                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\r\n                                                    \"referenceType\": \"Resolve\",\r\n                                                    \"referenceResolveAttributePath\": \"Name\",\r\n                                                    \"referenceResolveAttributeValue\": \"HDuarte\",\r\n                                                    \"referenceParititionScope\": \"CompanyDomain\"\r\n                                                }\r\n                                            ]\r\n                                        },                                        \r\n                                        {\r\n                                            \"name\": \"CostApprovedGeneralInvoicesUnitOfMeasurement\",\r\n                                            \"value\": \"ea\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"Notes\",\r\n                                            \"value\": \"170520\"\r\n                                        }\r\n                                    ]\r\n                                }\r\n                            ],\r\n                            \"name\": \"Items\"\r\n                        },\r\n                        {\r\n                            \"name\": \"InvoiceDate\",\r\n                            \"value\": \"'2020-08-31T00:00:00'\"\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"name\": \"General_Invoice\"\r\n        }\r\n    ],\r\n    \"parameters\": []\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "apps",
                    ":appName",
                    "activities",
                    "run"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "{{project}}"
                    },
                    {
                      "key": "appName",
                      "value": "kahua_GeneralInvoices"
                    }
                  ]
                },
                "description": "Used to add or update a general invoice expense."
              },
              "response": [
                {
                  "name": "6.2.3: (ACT) General Invoice",
                  "originalRequest": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Accept",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"listIdentifier\": 0,\r\n    \"listId\": 0,\r\n    \"activity\": {\r\n        \"PropertyName\": \"Activity\",\r\n        \"Name\": \"General_Invoice\",\r\n        \"Flow\": [\r\n            {\r\n                \"PropertyName\": \"Iterate\",\r\n                \"New\": {},\r\n                \"Set\": \"General_Invoice\",\r\n                \"Existing\": {}\r\n            }\r\n        ]\r\n    },\r\n    \"sets\": [\r\n        {\r\n            \"entities\": [\r\n                {\r\n                    \"hubPath\": \"kahua_GeneralInvoices.Default\\\\Start\",\r\n                    \"entityDef\": \"kahua_GeneralInvoices.General_Invoice\",\r\n                    \"attributes\": [\r\n                        {\r\n                            \"name\": \"Number\",\r\n                            \"value\": \"19\"\r\n                        },\r\n                        {\r\n                            \"entities\": [\r\n                                {\r\n                                    \"hubPath\": \"\",\r\n                                    \"entityDef\": \"kahua_GeneralInvoices.General_Invoice_Invoice_Item\",\r\n                                    \"attributes\": [\r\n                                        {\r\n                                            \"name\": \"CostApprovedGeneralInvoicesUnitValue\",\r\n                                            \"value\": \"201371\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"Number\",\r\n                                            \"value\": \"0000118493 11 B\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"WorkBreakdownItem\",\r\n                                            \"entities\": [\r\n                                                {\r\n                                                    \"entityDef\": \"kahua_WorkBreakdown.Item\",\r\n                                                    \"referenceType\": \"Resolve\",\r\n                                                    \"referenceResolveAttributePath\": \"Code\",\r\n                                                    \"referenceResolveAttributeValue\": \"0001.18100.OVH\"\r\n                                                }\r\n                                            ]\r\n                                        },\r\n                                        {\r\n                                            // Find the Company you'd like to reference inside the \r\n                                            \"name\": \"FromCompany\",\r\n                                            \"entities\": [\r\n                                                {\r\n                                                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\r\n                                                    \"referenceType\": \"Resolve\",\r\n                                                    \"referenceResolveAttributePath\": \"Name\",\r\n                                                    \"referenceResolveAttributeValue\": \"HDuarte\",\r\n                                                    \"referenceParititionScope\": \"CompanyDomain\"\r\n                                                }\r\n                                            ]\r\n                                        },                                        \r\n                                        {\r\n                                            \"name\": \"CostApprovedGeneralInvoicesUnitOfMeasurement\",\r\n                                            \"value\": \"ea\"\r\n                                        },\r\n                                        {\r\n                                            \"name\": \"Notes\",\r\n                                            \"value\": \"170520\"\r\n                                        }\r\n                                    ]\r\n                                }\r\n                            ],\r\n                            \"name\": \"Items\"\r\n                        },\r\n                        {\r\n                            \"name\": \"InvoiceDate\",\r\n                            \"value\": \"'2020-08-31T00:00:00'\"\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"name\": \"General_Invoice\"\r\n        }\r\n    ],\r\n    \"parameters\": []\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/apps/:appName/activities/run",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v1",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "apps",
                        ":appName",
                        "activities",
                        "run"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "59241830"
                        },
                        {
                          "key": "appName",
                          "value": "kahua_GeneralInvoices"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 16:27:10 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "435"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"activity\": {\n        \"PropertyName\": \"Activity\",\n        \"Name\": \"General_Invoice\",\n        \"Flow\": [\n            {\n                \"PropertyName\": \"Iterate\",\n                \"Set\": \"General_Invoice\",\n                \"New\": {},\n                \"Existing\": {}\n            }\n        ]\n    },\n    \"listIdentifier\": 0,\n    \"listId\": 0,\n    \"sets\": [\n        {\n            \"name\": \"General_Invoice\",\n            \"entities\": [\n                {\n                    \"id\": 59893098,\n                    \"entityDef\": \"kahua_GeneralInvoices.General_Invoice\",\n                    \"hubPath\": \"kahua_GeneralInvoices.Default\\\\Start\",\n                    \"attributes\": [\n                        {\n                            \"name\": \"Number\",\n                            \"value\": \"19\"\n                        },\n                        {\n                            \"name\": \"RecycleBinLabel\",\n                            \"value\": \"General Invoice 19 \"\n                        },\n                        {\n                            \"name\": \"DetailLabel\",\n                            \"value\": \"General Invoice 19 \"\n                        },\n                        {\n                            \"name\": \"LongLabel\",\n                            \"value\": \"General Invoice 19 \"\n                        },\n                        {\n                            \"name\": \"ShortLabel\",\n                            \"value\": \"General Invoice 19 \"\n                        },\n                        {\n                            \"name\": \"AppNameLabel\",\n                            \"value\": \"General Invoices\"\n                        },\n                        {\n                            \"name\": \"InvoiceDate\",\n                            \"value\": \"\\\"2020-08-31T00:00:00\\\"\"\n                        },\n                        {\n                            \"name\": \"CurrencyPrecisionOverride\",\n                            \"value\": \"-1\"\n                        },\n                        {\n                            \"name\": \"TaxAllowsManualEntry\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"AllowItemCostUnitEntry\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"CostUnitEntryType\",\n                            \"value\": \"UnitPrice\"\n                        },\n                        {\n                            \"name\": \"TaxSettingInclude\",\n                            \"value\": \"SeparateLineItem\"\n                        },\n                        {\n                            \"name\": \"CurrencyRateTypeId\",\n                            \"value\": \"1616\"\n                        },\n                        {\n                            \"name\": \"IsMarkup\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"IsCountedDisabled\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"IsTaxable\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"IsManual\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"CurrencyRateLastModifiedDateTime\",\n                            \"value\": \"\\\"2026-01-28T16:27:10.2790057Z\\\"\"\n                        },\n                        {\n                            \"name\": \"CurrencyRateToDocument\",\n                            \"value\": \"1\"\n                        },\n                        {\n                            \"name\": \"CurrencyRateToDomain\",\n                            \"value\": \"1\"\n                        },\n                        {\n                            \"name\": \"CurrencyRateId\",\n                            \"value\": \"2690\"\n                        },\n                        {\n                            \"name\": \"CurrencyCode\",\n                            \"value\": \"USD\"\n                        },\n                        {\n                            \"name\": \"IsExchangeEntity\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"MarkupEnabled\",\n                            \"value\": \"False\"\n                        },\n                        {\n                            \"name\": \"CreatedDateTime\",\n                            \"value\": \"\\\"2026-01-28T16:27:10.3090526Z\\\"\"\n                        },\n                        {\n                            \"name\": \"DomainPartitionId\",\n                            \"value\": \"59241830\"\n                        },\n                        {\n                            \"name\": \"PartitionId\",\n                            \"value\": \"59241830\"\n                        },\n                        {\n                            \"name\": \"InstanceId\",\n                            \"value\": \"59893098\"\n                        },\n                        {\n                            \"name\": \"Instance\",\n                            \"value\": \"1\"\n                        },\n                        {\n                            \"name\": \"Id\",\n                            \"value\": \"59893098\"\n                        },\n                        {\n                            \"name\": \"CreatedBy\",\n                            \"entities\": [\n                                {\n                                    \"id\": 24611666,\n                                    \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                                    \"hubPath\": \"\",\n                                    \"attributes\": [\n                                        {\n                                            \"name\": \"IsExchangeEntity\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsEmployee\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"MarkupEnabled\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsDomainUser\",\n                                            \"value\": \"True\"\n                                        },\n                                        {\n                                            \"name\": \"IsInSyncWithCommunity\",\n                                            \"value\": \"True\"\n                                        },\n                                        {\n                                            \"name\": \"IsPublished\",\n                                            \"value\": \"True\"\n                                        },\n                                        {\n                                            \"name\": \"IsDomainAdmin\",\n                                            \"value\": \"True\"\n                                        },\n                                        {\n                                            \"name\": \"CreatedDateTime\",\n                                            \"value\": \"\\\"2023-05-15T13:17:18.283Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"ModifiedDateTime\",\n                                            \"value\": \"\\\"2023-05-15T13:18:16.36Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"PartitionId\",\n                                            \"value\": \"0\"\n                                        },\n                                        {\n                                            \"name\": \"DomainPartitionId\",\n                                            \"value\": \"0\"\n                                        },\n                                        {\n                                            \"name\": \"Instance\",\n                                            \"value\": \"5\"\n                                        },\n                                        {\n                                            \"name\": \"PortableViewInstance\",\n                                            \"value\": \"5\"\n                                        },\n                                        {\n                                            \"name\": \"Id\",\n                                            \"value\": \"24611666\"\n                                        },\n                                        {\n                                            \"name\": \"InstanceId\",\n                                            \"value\": \"24613042\"\n                                        },\n                                        {\n                                            \"name\": \"EmailAddress\",\n                                            \"value\": \"HDuarte@kahua.com\"\n                                        },\n                                        {\n                                            \"name\": \"FirstName\",\n                                            \"value\": \"Herbert\"\n                                        },\n                                        {\n                                            \"name\": \"LastName\",\n                                            \"value\": \"Duarte\"\n                                        },\n                                        {\n                                            \"name\": \"PersonId\",\n                                            \"value\": \"4f30a5a1-3fa6-4e3f-9915-72768f331b5e\"\n                                        },\n                                        {\n                                            \"name\": \"SourceApp\",\n                                            \"value\": \"kahua_PeopleManager\"\n                                        },\n                                        {\n                                            \"name\": \"AppNameLabel\",\n                                            \"value\": \"[AppLabel]\"\n                                        },\n                                        {\n                                            \"name\": \"ContactCompanyLabel\",\n                                            \"value\": \"Herbert Duarte - HDuarteCo\"\n                                        },\n                                        {\n                                            \"name\": \"ContactFullNameLabel\",\n                                            \"value\": \"Herbert Duarte\"\n                                        },\n                                        {\n                                            \"name\": \"ShortLabel\",\n                                            \"value\": \"Herbert Duarte\"\n                                        },\n                                        {\n                                            \"name\": \"CompanyContactLabel\",\n                                            \"value\": \"HDuarteCo - Herbert Duarte\"\n                                        },\n                                        {\n                                            \"name\": \"LongLabel\",\n                                            \"value\": \"Herbert Duarte (HDuarte@kahua.com)\"\n                                        },\n                                        {\n                                            \"name\": \"DetailLabel\",\n                                            \"value\": \"Name: Herbert Duarte\"\n                                        },\n                                        {\n                                            \"name\": \"FullTextIndexContent\",\n                                            \"value\": \"Herbert Duarte HDuarteCo\"\n                                        },\n                                        {\n                                            \"name\": \"ProfilePhoto\",\n                                            \"file\": {\n                                                \"identifier\": \"24611666-24611671\",\n                                                \"name\": \"default_profile_photo.png\"\n                                            }\n                                        },\n                                        {\n                                            \"name\": \"Company\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 24611663,\n                                                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                                                    \"hubPath\": \"\",\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"Office\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 24611661,\n                                                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                                                    \"hubPath\": \"\",\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        }\n                                    ],\n                                    \"outwardReferences\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Partition\",\n                            \"entities\": [\n                                {\n                                    \"id\": 59241830,\n                                    \"entityDef\": \"kahua_Project.Project\",\n                                    \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                                    \"attributes\": [\n                                        {\n                                            \"name\": \"IsExchangeEntity\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsArchived\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsCountedDisabled\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsManual\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsMarkup\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsPending\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsTaxable\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"MarkupEnabled\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateLastModifiedDateTime\",\n                                            \"value\": \"\\\"2026-01-26T14:51:18.853Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"CreatedDateTime\",\n                                            \"value\": \"\\\"2026-01-26T14:51:18.973Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateToDomain\",\n                                            \"value\": \"1.000000000\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateToDocument\",\n                                            \"value\": \"1.000000000\"\n                                        },\n                                        {\n                                            \"name\": \"PartitionId\",\n                                            \"value\": \"0\"\n                                        },\n                                        {\n                                            \"name\": \"DomainPartitionId\",\n                                            \"value\": \"0\"\n                                        },\n                                        {\n                                            \"name\": \"Instance\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateTypeId\",\n                                            \"value\": \"1616\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateId\",\n                                            \"value\": \"2690\"\n                                        },\n                                        {\n                                            \"name\": \"Id\",\n                                            \"value\": \"59241830\"\n                                        },\n                                        {\n                                            \"name\": \"InstanceId\",\n                                            \"value\": \"59241830\"\n                                        },\n                                        {\n                                            \"name\": \"Number\",\n                                            \"value\": \"0001\"\n                                        },\n                                        {\n                                            \"name\": \"ProjectCurrency\",\n                                            \"value\": \"USD\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyCode\",\n                                            \"value\": \"USD\"\n                                        },\n                                        {\n                                            \"name\": \"Name\",\n                                            \"value\": \"Project - 0001\"\n                                        },\n                                        {\n                                            \"name\": \"PartitionItemState\",\n                                            \"value\": \"Live\"\n                                        },\n                                        {\n                                            \"name\": \"PartitionItemType\",\n                                            \"value\": \"Project\"\n                                        },\n                                        {\n                                            \"name\": \"Path\",\n                                            \"value\": \"\\\\Project - 0001\"\n                                        },\n                                        {\n                                            \"name\": \"AppNameLabel\",\n                                            \"value\": \"Workflow Labels\"\n                                        },\n                                        {\n                                            \"name\": \"DetailLabel\",\n                                            \"value\": \"Project: Project - 0001\"\n                                        },\n                                        {\n                                            \"name\": \"LongLabel\",\n                                            \"value\": \"Project - 0001\"\n                                        },\n                                        {\n                                            \"name\": \"ShortLabel\",\n                                            \"value\": \"Project - 0001\"\n                                        },\n                                        {\n                                            \"name\": \"CreatedBy\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 24611666,\n                                                    \"referenceType\": 1,\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"Address\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59241831,\n                                                    \"entityDef\": \"kahua_Address.Address\",\n                                                    \"hubPath\": \"\",\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        }\n                                    ],\n                                    \"outwardReferences\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"DomainPartition\",\n                            \"entities\": [\n                                {\n                                    \"id\": 59241830,\n                                    \"referenceType\": 1,\n                                    \"attributes\": [],\n                                    \"outwardReferences\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Status\",\n                            \"entities\": [\n                                {\n                                    \"id\": 59821984,\n                                    \"entityDef\": \"kahua_Cost.CostItemStatus\",\n                                    \"attributes\": [\n                                        {\n                                            \"name\": \"MarkupEnabled\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsExchangeEntity\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"UpdateCurrencyRate\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsDefault\",\n                                            \"value\": \"True\"\n                                        },\n                                        {\n                                            \"name\": \"CreatedDateTime\",\n                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"ModifiedDateTime\",\n                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"PartitionId\",\n                                            \"value\": \"-1\"\n                                        },\n                                        {\n                                            \"name\": \"DomainPartitionId\",\n                                            \"value\": \"0\"\n                                        },\n                                        {\n                                            \"name\": \"Rank\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"name\": \"PortableViewInstance\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"name\": \"Instance\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"name\": \"Id\",\n                                            \"value\": \"59821984\"\n                                        },\n                                        {\n                                            \"name\": \"InstanceId\",\n                                            \"value\": \"59821984\"\n                                        },\n                                        {\n                                            \"name\": \"SourceApp\",\n                                            \"value\": \"kahua_GeneralInvoices\"\n                                        },\n                                        {\n                                            \"name\": \"Name\",\n                                            \"value\": \"Draft\"\n                                        },\n                                        {\n                                            \"name\": \"ClientId\",\n                                            \"value\": \"General_Invoice_CostItemStatus_Draft\"\n                                        },\n                                        {\n                                            \"name\": \"Label\",\n                                            \"value\": \"[Name]\"\n                                        },\n                                        {\n                                            \"name\": \"AppNameLabel\",\n                                            \"value\": \"General Invoices\"\n                                        },\n                                        {\n                                            \"name\": \"ShortLabel\",\n                                            \"value\": \"Draft\"\n                                        },\n                                        {\n                                            \"name\": \"ActiveCostUnitSetting\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59821985,\n                                                    \"entityDef\": \"kahua_Cost.CostUnitSetting\",\n                                                    \"attributes\": [\n                                                        {\n                                                            \"name\": \"MarkupEnabled\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsExchangeEntity\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsCounted\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsDocumentSummingDisabled\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsActive\",\n                                                            \"value\": \"True\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsEditable\",\n                                                            \"value\": \"True\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CreatedDateTime\",\n                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ModifiedDateTime\",\n                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PartitionId\",\n                                                            \"value\": \"-1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"DomainPartitionId\",\n                                                            \"value\": \"0\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PortableViewInstance\",\n                                                            \"value\": \"1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Instance\",\n                                                            \"value\": \"1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Id\",\n                                                            \"value\": \"59821985\"\n                                                        },\n                                                        {\n                                                            \"name\": \"InstanceId\",\n                                                            \"value\": \"59821985\"\n                                                        },\n                                                        {\n                                                            \"name\": \"SourceApp\",\n                                                            \"value\": \"kahua_GeneralInvoices\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CostUnitName\",\n                                                            \"value\": \"CostPendingGeneralInvoices\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ClientId\",\n                                                            \"value\": \"General_Invoice_CostItemStatus_Draft_CostUnit_Pending\"\n                                                        },\n                                                        {\n                                                            \"name\": \"AppNameLabel\",\n                                                            \"value\": \"General Invoices\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Definition\",\n                                                            \"entities\": [\n                                                                {\n                                                                    \"id\": 59821979,\n                                                                    \"entityDef\": \"kahua_Cost.CostUnitDefinition\",\n                                                                    \"attributes\": [\n                                                                        {\n                                                                            \"name\": \"IsExchangeEntity\",\n                                                                            \"value\": \"False\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"MarkupEnabled\",\n                                                                            \"value\": \"False\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"ModifiedDateTime\",\n                                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"CreatedDateTime\",\n                                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"PartitionId\",\n                                                                            \"value\": \"-1\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"DomainPartitionId\",\n                                                                            \"value\": \"0\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"Instance\",\n                                                                            \"value\": \"1\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"PortableViewInstance\",\n                                                                            \"value\": \"1\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"Id\",\n                                                                            \"value\": \"59821979\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"InstanceId\",\n                                                                            \"value\": \"59821979\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"SourceApp\",\n                                                                            \"value\": \"kahua_GeneralInvoices\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"EntityDefName\",\n                                                                            \"value\": \"kahua_GeneralInvoices.General_Invoice\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"CostUnitName\",\n                                                                            \"value\": \"CostPendingGeneralInvoices\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"Label\",\n                                                                            \"value\": \"Pending\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"ClientId\",\n                                                                            \"value\": \"General_Invoice_CostUnit_Pending\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"LabelToken\",\n                                                                            \"value\": \"[Label]\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"AppNameLabel\",\n                                                                            \"value\": \"General Invoices\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"ShortLabel\",\n                                                                            \"value\": \"Pending\"\n                                                                        }\n                                                                    ],\n                                                                    \"outwardReferences\": []\n                                                                }\n                                                            ]\n                                                        }\n                                                    ],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"CostUnitSetting\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59821985,\n                                                    \"referenceType\": 1,\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                },\n                                                {\n                                                    \"id\": 59821986,\n                                                    \"entityDef\": \"kahua_Cost.CostUnitSetting\",\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        }\n                                    ],\n                                    \"outwardReferences\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"name\": \"Items\",\n                            \"entities\": [\n                                {\n                                    \"id\": 59893099,\n                                    \"entityDef\": \"kahua_GeneralInvoices.General_Invoice_Invoice_Item\",\n                                    \"attributes\": [\n                                        {\n                                            \"name\": \"CostApprovedGeneralInvoicesUnitValue\",\n                                            \"value\": \"201371\"\n                                        },\n                                        {\n                                            \"name\": \"CostApprovedGeneralInvoicesUnitOfMeasurement\",\n                                            \"value\": \"ea\"\n                                        },\n                                        {\n                                            \"name\": \"RecycleBinLabel\",\n                                            \"value\": \"0000118493 11 B - \"\n                                        },\n                                        {\n                                            \"name\": \"DetailLabel\",\n                                            \"value\": \"0000118493 11 B - \"\n                                        },\n                                        {\n                                            \"name\": \"LongLabel\",\n                                            \"value\": \"0000118493 11 B - \"\n                                        },\n                                        {\n                                            \"name\": \"ShortLabel\",\n                                            \"value\": \"0000118493 11 B - \"\n                                        },\n                                        {\n                                            \"name\": \"AppNameLabel\",\n                                            \"value\": \"General Invoices\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateTypeId\",\n                                            \"value\": \"1616\"\n                                        },\n                                        {\n                                            \"name\": \"IsMarkup\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsCountedDisabled\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"Notes\",\n                                            \"value\": \"170520\"\n                                        },\n                                        {\n                                            \"name\": \"IsTaxable\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"IsManual\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateLastModifiedDateTime\",\n                                            \"value\": \"\\\"2026-01-28T16:27:10.2934719Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateToDocument\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateToDomain\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyRateId\",\n                                            \"value\": \"2690\"\n                                        },\n                                        {\n                                            \"name\": \"CurrencyCode\",\n                                            \"value\": \"USD\"\n                                        },\n                                        {\n                                            \"name\": \"IsExchangeEntity\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"MarkupEnabled\",\n                                            \"value\": \"False\"\n                                        },\n                                        {\n                                            \"name\": \"CreatedDateTime\",\n                                            \"value\": \"\\\"2026-01-28T16:27:10.3090526Z\\\"\"\n                                        },\n                                        {\n                                            \"name\": \"DomainPartitionId\",\n                                            \"value\": \"59241830\"\n                                        },\n                                        {\n                                            \"name\": \"PartitionId\",\n                                            \"value\": \"59241830\"\n                                        },\n                                        {\n                                            \"name\": \"InstanceId\",\n                                            \"value\": \"59893099\"\n                                        },\n                                        {\n                                            \"name\": \"Instance\",\n                                            \"value\": \"1\"\n                                        },\n                                        {\n                                            \"name\": \"Id\",\n                                            \"value\": \"59893099\"\n                                        },\n                                        {\n                                            \"name\": \"Number\",\n                                            \"value\": \"0000118493 11 B\"\n                                        },\n                                        {\n                                            \"name\": \"CreatedBy\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 24611666,\n                                                    \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                                                    \"attributes\": [\n                                                        {\n                                                            \"name\": \"IsExchangeEntity\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsEmployee\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"MarkupEnabled\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsDomainUser\",\n                                                            \"value\": \"True\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsInSyncWithCommunity\",\n                                                            \"value\": \"True\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsPublished\",\n                                                            \"value\": \"True\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsDomainAdmin\",\n                                                            \"value\": \"True\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CreatedDateTime\",\n                                                            \"value\": \"\\\"2023-05-15T13:17:18.283Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ModifiedDateTime\",\n                                                            \"value\": \"\\\"2023-05-15T13:18:16.36Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PartitionId\",\n                                                            \"value\": \"0\"\n                                                        },\n                                                        {\n                                                            \"name\": \"DomainPartitionId\",\n                                                            \"value\": \"0\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Instance\",\n                                                            \"value\": \"5\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PortableViewInstance\",\n                                                            \"value\": \"5\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Id\",\n                                                            \"value\": \"24611666\"\n                                                        },\n                                                        {\n                                                            \"name\": \"InstanceId\",\n                                                            \"value\": \"24613042\"\n                                                        },\n                                                        {\n                                                            \"name\": \"EmailAddress\",\n                                                            \"value\": \"HDuarte@kahua.com\"\n                                                        },\n                                                        {\n                                                            \"name\": \"FirstName\",\n                                                            \"value\": \"Herbert\"\n                                                        },\n                                                        {\n                                                            \"name\": \"LastName\",\n                                                            \"value\": \"Duarte\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PersonId\",\n                                                            \"value\": \"4f30a5a1-3fa6-4e3f-9915-72768f331b5e\"\n                                                        },\n                                                        {\n                                                            \"name\": \"SourceApp\",\n                                                            \"value\": \"kahua_PeopleManager\"\n                                                        },\n                                                        {\n                                                            \"name\": \"AppNameLabel\",\n                                                            \"value\": \"[AppLabel]\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ContactCompanyLabel\",\n                                                            \"value\": \"Herbert Duarte - HDuarteCo\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ContactFullNameLabel\",\n                                                            \"value\": \"Herbert Duarte\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ShortLabel\",\n                                                            \"value\": \"Herbert Duarte\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CompanyContactLabel\",\n                                                            \"value\": \"HDuarteCo - Herbert Duarte\"\n                                                        },\n                                                        {\n                                                            \"name\": \"LongLabel\",\n                                                            \"value\": \"Herbert Duarte (HDuarte@kahua.com)\"\n                                                        },\n                                                        {\n                                                            \"name\": \"DetailLabel\",\n                                                            \"value\": \"Name: Herbert Duarte\"\n                                                        },\n                                                        {\n                                                            \"name\": \"FullTextIndexContent\",\n                                                            \"value\": \"Herbert Duarte HDuarteCo\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ProfilePhoto\",\n                                                            \"file\": {\n                                                                \"identifier\": \"24611666-24611671\",\n                                                                \"name\": \"default_profile_photo.png\"\n                                                            }\n                                                        },\n                                                        {\n                                                            \"name\": \"Company\",\n                                                            \"entities\": [\n                                                                {\n                                                                    \"id\": 24611663,\n                                                                    \"entityDef\": \"kahua_CompanyManager.kahua_Company\",\n                                                                    \"attributes\": [],\n                                                                    \"outwardReferences\": []\n                                                                }\n                                                            ]\n                                                        },\n                                                        {\n                                                            \"name\": \"Office\",\n                                                            \"entities\": [\n                                                                {\n                                                                    \"id\": 24611661,\n                                                                    \"entityDef\": \"kahua_CompanyManager.kahua_Office\",\n                                                                    \"attributes\": [],\n                                                                    \"outwardReferences\": []\n                                                                }\n                                                            ]\n                                                        }\n                                                    ],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"Partition\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59241830,\n                                                    \"entityDef\": \"kahua_Project.Project\",\n                                                    \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                                                    \"attributes\": [\n                                                        {\n                                                            \"name\": \"IsExchangeEntity\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsArchived\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsCountedDisabled\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsManual\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsMarkup\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsPending\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsTaxable\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"MarkupEnabled\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CurrencyRateLastModifiedDateTime\",\n                                                            \"value\": \"\\\"2026-01-26T14:51:18.853Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CreatedDateTime\",\n                                                            \"value\": \"\\\"2026-01-26T14:51:18.973Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CurrencyRateToDomain\",\n                                                            \"value\": \"1.000000000\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CurrencyRateToDocument\",\n                                                            \"value\": \"1.000000000\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PartitionId\",\n                                                            \"value\": \"0\"\n                                                        },\n                                                        {\n                                                            \"name\": \"DomainPartitionId\",\n                                                            \"value\": \"0\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Instance\",\n                                                            \"value\": \"1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CurrencyRateTypeId\",\n                                                            \"value\": \"1616\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CurrencyRateId\",\n                                                            \"value\": \"2690\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Id\",\n                                                            \"value\": \"59241830\"\n                                                        },\n                                                        {\n                                                            \"name\": \"InstanceId\",\n                                                            \"value\": \"59241830\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Number\",\n                                                            \"value\": \"0001\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ProjectCurrency\",\n                                                            \"value\": \"USD\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CurrencyCode\",\n                                                            \"value\": \"USD\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Name\",\n                                                            \"value\": \"Project - 0001\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PartitionItemState\",\n                                                            \"value\": \"Live\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PartitionItemType\",\n                                                            \"value\": \"Project\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Path\",\n                                                            \"value\": \"\\\\Project - 0001\"\n                                                        },\n                                                        {\n                                                            \"name\": \"AppNameLabel\",\n                                                            \"value\": \"Workflow Labels\"\n                                                        },\n                                                        {\n                                                            \"name\": \"DetailLabel\",\n                                                            \"value\": \"Project: Project - 0001\"\n                                                        },\n                                                        {\n                                                            \"name\": \"LongLabel\",\n                                                            \"value\": \"Project - 0001\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ShortLabel\",\n                                                            \"value\": \"Project - 0001\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CreatedBy\",\n                                                            \"entities\": [\n                                                                {\n                                                                    \"id\": 24611666,\n                                                                    \"referenceType\": 1,\n                                                                    \"attributes\": [],\n                                                                    \"outwardReferences\": []\n                                                                }\n                                                            ]\n                                                        },\n                                                        {\n                                                            \"name\": \"Address\",\n                                                            \"entities\": [\n                                                                {\n                                                                    \"id\": 59241831,\n                                                                    \"entityDef\": \"kahua_Address.Address\",\n                                                                    \"attributes\": [],\n                                                                    \"outwardReferences\": []\n                                                                }\n                                                            ]\n                                                        }\n                                                    ],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"DomainPartition\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59241830,\n                                                    \"referenceType\": 1,\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"Status\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59822000,\n                                                    \"entityDef\": \"kahua_Cost.CostItemStatus\",\n                                                    \"attributes\": [\n                                                        {\n                                                            \"name\": \"MarkupEnabled\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsExchangeEntity\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"UpdateCurrencyRate\",\n                                                            \"value\": \"False\"\n                                                        },\n                                                        {\n                                                            \"name\": \"IsDefault\",\n                                                            \"value\": \"True\"\n                                                        },\n                                                        {\n                                                            \"name\": \"CreatedDateTime\",\n                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ModifiedDateTime\",\n                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PartitionId\",\n                                                            \"value\": \"-1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"DomainPartitionId\",\n                                                            \"value\": \"0\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Rank\",\n                                                            \"value\": \"1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"PortableViewInstance\",\n                                                            \"value\": \"1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Instance\",\n                                                            \"value\": \"1\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Id\",\n                                                            \"value\": \"59822000\"\n                                                        },\n                                                        {\n                                                            \"name\": \"InstanceId\",\n                                                            \"value\": \"59822000\"\n                                                        },\n                                                        {\n                                                            \"name\": \"SourceApp\",\n                                                            \"value\": \"kahua_GeneralInvoices\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Name\",\n                                                            \"value\": \"Draft\"\n                                                        },\n                                                        {\n                                                            \"name\": \"Label\",\n                                                            \"value\": \"[Name]\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ClientId\",\n                                                            \"value\": \"General_Invoice_Invoice_Item_CostItemStatus_Draft\"\n                                                        },\n                                                        {\n                                                            \"name\": \"AppNameLabel\",\n                                                            \"value\": \"General Invoices\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ShortLabel\",\n                                                            \"value\": \"Draft\"\n                                                        },\n                                                        {\n                                                            \"name\": \"ActiveCostUnitSetting\",\n                                                            \"entities\": [\n                                                                {\n                                                                    \"id\": 59822001,\n                                                                    \"entityDef\": \"kahua_Cost.CostUnitSetting\",\n                                                                    \"attributes\": [\n                                                                        {\n                                                                            \"name\": \"MarkupEnabled\",\n                                                                            \"value\": \"False\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"IsExchangeEntity\",\n                                                                            \"value\": \"False\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"IsCounted\",\n                                                                            \"value\": \"False\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"IsDocumentSummingDisabled\",\n                                                                            \"value\": \"False\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"IsActive\",\n                                                                            \"value\": \"True\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"IsEditable\",\n                                                                            \"value\": \"True\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"CreatedDateTime\",\n                                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"ModifiedDateTime\",\n                                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"PartitionId\",\n                                                                            \"value\": \"-1\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"DomainPartitionId\",\n                                                                            \"value\": \"0\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"PortableViewInstance\",\n                                                                            \"value\": \"1\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"Instance\",\n                                                                            \"value\": \"1\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"Id\",\n                                                                            \"value\": \"59822001\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"InstanceId\",\n                                                                            \"value\": \"59822001\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"SourceApp\",\n                                                                            \"value\": \"kahua_GeneralInvoices\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"CostUnitName\",\n                                                                            \"value\": \"CostPendingGeneralInvoices\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"ClientId\",\n                                                                            \"value\": \"General_Invoice_Invoice_Item_CostItemStatus_Draft_CostUnit_Pending\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"AppNameLabel\",\n                                                                            \"value\": \"General Invoices\"\n                                                                        },\n                                                                        {\n                                                                            \"name\": \"Definition\",\n                                                                            \"entities\": [\n                                                                                {\n                                                                                    \"id\": 59821981,\n                                                                                    \"entityDef\": \"kahua_Cost.CostUnitDefinition\",\n                                                                                    \"attributes\": [\n                                                                                        {\n                                                                                            \"name\": \"IsExchangeEntity\",\n                                                                                            \"value\": \"False\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"MarkupEnabled\",\n                                                                                            \"value\": \"False\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"ModifiedDateTime\",\n                                                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"CreatedDateTime\",\n                                                                                            \"value\": \"\\\"2026-01-27T15:12:24.457Z\\\"\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"PartitionId\",\n                                                                                            \"value\": \"-1\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"DomainPartitionId\",\n                                                                                            \"value\": \"0\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"Instance\",\n                                                                                            \"value\": \"1\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"PortableViewInstance\",\n                                                                                            \"value\": \"1\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"Id\",\n                                                                                            \"value\": \"59821981\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"InstanceId\",\n                                                                                            \"value\": \"59821981\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"SourceApp\",\n                                                                                            \"value\": \"kahua_GeneralInvoices\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"CostUnitName\",\n                                                                                            \"value\": \"CostPendingGeneralInvoices\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"Label\",\n                                                                                            \"value\": \"Pending\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"LabelToken\",\n                                                                                            \"value\": \"[Label]\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"EntityDefName\",\n                                                                                            \"value\": \"kahua_GeneralInvoices.General_Invoice_Invoice_Item\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"ClientId\",\n                                                                                            \"value\": \"General_Invoice_Invoice_Item_CostUnit_Pending\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"AppNameLabel\",\n                                                                                            \"value\": \"General Invoices\"\n                                                                                        },\n                                                                                        {\n                                                                                            \"name\": \"ShortLabel\",\n                                                                                            \"value\": \"Pending\"\n                                                                                        }\n                                                                                    ],\n                                                                                    \"outwardReferences\": []\n                                                                                }\n                                                                            ]\n                                                                        }\n                                                                    ],\n                                                                    \"outwardReferences\": []\n                                                                }\n                                                            ]\n                                                        },\n                                                        {\n                                                            \"name\": \"CostUnitSetting\",\n                                                            \"entities\": [\n                                                                {\n                                                                    \"id\": 59822001,\n                                                                    \"referenceType\": 1,\n                                                                    \"attributes\": [],\n                                                                    \"outwardReferences\": []\n                                                                },\n                                                                {\n                                                                    \"id\": 59822002,\n                                                                    \"entityDef\": \"kahua_Cost.CostUnitSetting\",\n                                                                    \"attributes\": [],\n                                                                    \"outwardReferences\": []\n                                                                }\n                                                            ]\n                                                        }\n                                                    ],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"WorkBreakdownItem\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59892873,\n                                                    \"entityDef\": \"kahua_WorkBreakdown.Item\",\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        },\n                                        {\n                                            \"name\": \"Parent\",\n                                            \"entities\": [\n                                                {\n                                                    \"id\": 59893098,\n                                                    \"referenceType\": 1,\n                                                    \"attributes\": [],\n                                                    \"outwardReferences\": []\n                                                }\n                                            ]\n                                        }\n                                    ],\n                                    \"outwardReferences\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"outwardReferences\": []\n                }\n            ]\n        }\n    ],\n    \"parameters\": []\n}"
                }
              ]
            },
            {
              "name": "6.2.4:(QRY) Change Orders",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n  \"PropertyName\": \"Query\",\r\n  \"EntityDef\": \"kahua_ContractChangeOrder.ContractChangeOrder\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v2",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "query"
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "59932416"
                    }
                  ]
                },
                "description": "Queries for all Contract Change Orders that fit within the selected conditions (put no conditions to retrieve all Contract Change Orders)\n\n- There are two different apps that contain Contracts, Expenses and Funding. Currently this query is set up to retrieve Contracts from the Expenses app. If you want to query for Funding Contracts, change the `\"entityDef\"` to `\"kahua_ClientContractChangeOrder.ClientContractChangeOrder\"`"
              },
              "response": [
                {
                  "name": "6.2.4:(QRY) Change Orders",
                  "originalRequest": {
                    "method": "POST",
                    "header": [],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n  \"PropertyName\": \"Query\",\r\n  \"EntityDef\": \"kahua_ContractChangeOrder.ContractChangeOrder\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "https://{{envname}}service.kahua.com/v2/domains/{{domain}}/projects/:projectId/query",
                      "protocol": "https",
                      "host": [
                        "{{envname}}service",
                        "kahua",
                        "com"
                      ],
                      "path": [
                        "v2",
                        "domains",
                        "{{domain}}",
                        "projects",
                        ":projectId",
                        "query"
                      ],
                      "variable": [
                        {
                          "key": "projectId",
                          "value": "59241830"
                        }
                      ]
                    }
                  },
                  "status": "OK",
                  "code": 200,
                  "_postman_previewlanguage": "Text",
                  "header": [
                    {
                      "key": "Content-Type",
                      "value": "application/json; charset=utf-8"
                    },
                    {
                      "key": "Date",
                      "value": "Wed, 28 Jan 2026 16:09:36 GMT"
                    },
                    {
                      "key": "Cache-Control",
                      "value": "no-cache, no-store, must-revalidate"
                    },
                    {
                      "key": "Content-Encoding",
                      "value": "gzip"
                    },
                    {
                      "key": "Pragma",
                      "value": "no-cache"
                    },
                    {
                      "key": "Transfer-Encoding",
                      "value": "chunked"
                    },
                    {
                      "key": "Vary",
                      "value": "Accept-Encoding"
                    },
                    {
                      "key": "PlatformDuration",
                      "value": "53"
                    },
                    {
                      "key": "Content-Security-Policy",
                      "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                    },
                    {
                      "key": "Strict-Transport-Security",
                      "value": "max-age=31536000; includeSubDomains"
                    },
                    {
                      "key": "Referrer-Policy",
                      "value": "same-origin"
                    },
                    {
                      "key": "X-Content-Type-Options",
                      "value": "nosniff"
                    }
                  ],
                  "cookie": [],
                  "body": "{\n    \"count\": 2,\n    \"entities\": [\n        {\n            \"id\": 59891790,\n            \"entityDef\": \"kahua_ContractChangeOrder.ContractChangeOrder\",\n            \"hubPath\": \"kahua_ContractChangeOrder.KahuaWorkflow\\\\Active\",\n            \"outwardReferences\": [],\n            \"MarkupEnabled\": false,\n            \"IsExchangeEntity\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsTaxable\": false,\n            \"ItemsIncludeQuantity\": false,\n            \"AllowItemCostUnitEntry\": false,\n            \"TaxAllowsManualEntry\": true,\n            \"CurrencyRateLastModifiedDateTime\": \"2026-01-28T16:03:42.027\",\n            \"CreatedDateTime\": \"2026-01-28T16:03:42.027\",\n            \"ModifiedDateTime\": \"2026-01-28T16:03:52.803\",\n            \"CurrencyRateToDocument\": 1,\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyPrecisionOverride\": -1,\n            \"Instance\": 4,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateId\": 2690,\n            \"DomainPartitionId\": 59241830,\n            \"PartitionId\": 59241830,\n            \"Id\": 59891790,\n            \"InstanceId\": 59891801,\n            \"CurrencyCode\": \"USD\",\n            \"Number\": \"0002\",\n            \"TaxEntryType\": \"None\",\n            \"CostUnitEntryType\": \"TotalValue\",\n            \"TaxSettingInclude\": \"SeparateLineItem\",\n            \"Step\": \"Active\",\n            \"Description\": \"Test CO 02\",\n            \"WorkflowStatus\": \"Manually Set To Approved\",\n            \"LongLabel\": \"0002 -  - Test Contract 2 0002 Test CO 02\",\n            \"DetailLabel\": \"0002 -  - Test Contract 2 0002 Test CO 02\",\n            \"RecycleBinLabel\": \"0002 -  - Test Contract 2 0002 Test CO 02\",\n            \"ShortLabel\": \"0002 -  - Test Contract 2 0002 Test CO 02\",\n            \"AppNameLabel\": \"Expense Change Orders\",\n            \"CostItemsTotalTotalValue\": 1800,\n            \"CostItemsNonTaxTotalTotalValue\": 1800,\n            \"ContractChangeOrderApprovedTotalValue\": 1800,\n            \"ContractChangeOrderApprovedItemTotalAmount\": 1800,\n            \"PortableView\": {\n                \"identifier\": \"59891790-59892042\",\n                \"name\": \"ContractChangeOrderViewReport.0002.en.en.pdf\"\n            },\n            \"Contract\": {\n                \"id\": 59891533,\n                \"entityDef\": \"kahua_Contract.Contract\",\n                \"hubPath\": \"kahua_Contract.KahuaWorkflow\\\\Active\",\n                \"outwardReferences\": []\n            },\n            \"Items\": [\n                {\n                    \"id\": 59891791,\n                    \"entityDef\": \"kahua_ContractChangeOrder.ContractChangeOrderItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                {\n                    \"id\": 59891792,\n                    \"entityDef\": \"kahua_ContractChangeOrder.ContractChangeOrderItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                {\n                    \"id\": 59891793,\n                    \"entityDef\": \"kahua_ContractChangeOrder.ContractChangeOrderItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"CreatedBy\": {\n                \"id\": 24611666,\n                \"entityDef\": \"kahua_PeopleManager.kahua_Contact\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 59241830,\n                \"entityDef\": \"kahua_Project.Project\",\n                \"hubPath\": \"kahua_Project.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"DomainPartition\": {\n                \"id\": 59241830,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Status\": {\n                \"id\": 24612383,\n                \"entityDef\": \"kahua_Cost.CostItemStatus\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            }\n        },\n        {\n            \"id\": 59888218,\n            \"entityDef\": \"kahua_ContractChangeOrder.ContractChangeOrder\",\n            \"hubPath\": \"kahua_ContractChangeOrder.NoWorkflow\\\\Start\",\n            \"outwardReferences\": [],\n            \"IsExchangeEntity\": false,\n            \"IsCountedDisabled\": false,\n            \"IsManual\": false,\n            \"IsMarkup\": false,\n            \"IsTaxable\": false,\n            \"TaxAllowsManualEntry\": false,\n            \"AllowItemCostUnitEntry\": false,\n            \"MarkupEnabled\": false,\n            \"CurrencyRateLastModifiedDateTime\": \"2026-01-28T14:42:59.637\",\n            \"CreatedDateTime\": \"2026-01-28T14:42:59.640\",\n            \"ModifiedDateTime\": \"2026-01-28T14:55:07.767\",\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"Instance\": 3,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateId\": 2690,\n            \"PartitionId\": 59241830,\n            \"DomainPartitionId\": 59241830,\n            \"Id\": 59888218,\n            \"InstanceId\": 59888318,\n            \"Number\": \"0001\",\n            \"CurrencyCode\": \"USD\",\n            \"CostUnitEntryType\": \"UnitPrice\",\n            \"TaxSettingInclude\": \"SeparateLineItem\",\n            \"Description\": \"Test Change Order 1\",\n            \"AppNameLabel\": \"Expense Change Orders\",\n            \"LongLabel\": \"0001 -  - Test Contract 01 0001 Test Change Order 1\",\n            \"DetailLabel\": \"0001 -  - Test Contract 01 0001 Test Change Order 1\",\n            \"RecycleBinLabel\": \"0001 -  - Test Contract 01 0001 Test Change Order 1\",\n            \"ShortLabel\": \"0001 -  - Test Contract 01 0001 Test Change Order 1\",\n            \"PortableView\": {\n                \"identifier\": \"59888218-59888322\",\n                \"name\": \"Change_Order_ContractChangeOrderViewReport_0001.en.en.pdf\"\n            },\n            \"CreatedBy\": {\n                \"id\": 24611666,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Partition\": {\n                \"id\": 59241830,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Contract\": {\n                \"id\": 59888201,\n                \"entityDef\": \"kahua_Contract.Contract\",\n                \"hubPath\": \"kahua_Contract.NoWorkflow\\\\Start\",\n                \"outwardReferences\": []\n            },\n            \"Items\": [\n                {\n                    \"id\": 59888219,\n                    \"entityDef\": \"kahua_ContractChangeOrder.ContractChangeOrderItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                },\n                {\n                    \"id\": 59888320,\n                    \"entityDef\": \"kahua_ContractChangeOrder.ContractChangeOrderItem\",\n                    \"hubPath\": \"\",\n                    \"outwardReferences\": []\n                }\n            ],\n            \"DomainPartition\": {\n                \"id\": 59241830,\n                \"referenceType\": 1,\n                \"hubPath\": null,\n                \"outwardReferences\": []\n            },\n            \"Status\": {\n                \"id\": 24612373,\n                \"entityDef\": \"kahua_Cost.CostItemStatus\",\n                \"hubPath\": \"\",\n                \"outwardReferences\": []\n            }\n        }\n    ],\n    \"skipped\": 0,\n    \"taken\": 100,\n    \"marker\": 66396555\n}"
                }
              ]
            }
          ],
          "description": "These API calls associated with Expenses allow us to view the current entities for each specific app."
        }
      ],
      "description": "Contains endpoints associated with some of Kahua's Cost Management apps.\n\nThe Work Breakdown (WBS) endpoints help us understand the process of creating and locating the activity codes that will be used to track the cost within each activity code in that specific project.\n\nThe Expense endpoints will allow to look for the following entities within: Pay Request, Contract, Change Orders, and also support creating Invoices within the General Invoice app."
    },
    {
      "name": "7: Data Store",
      "item": [
        {
          "name": "7.1.1 List Specified App Table in Domain",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/{{AppName}}/{{Ent/ityDef}}",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "table",
                "{{AppName}}",
                "{{Ent/ityDef}}"
              ]
            },
            "description": "This request Lists the specified apps from a domain, ordered by their ID."
          },
          "response": [
            {
              "name": "7.1.1 List Specified App Table in Domain",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/{{AppName}}/{{Ent/ityDef}}",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "table",
                    "{{AppName}}",
                    "{{Ent/ityDef}}"
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "Text",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json; charset=utf-8"
                },
                {
                  "key": "Date",
                  "value": "Fri, 20 Feb 2026 17:42:14 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "37"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;frame-ancestors 'self' https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [],
              "body": "{\n    \"recordCount\": 8,\n    \"totalRecordCount\": 8,\n    \"records\": [\n        {\n            \"Id\": 60053290,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:25:33.403\",\n            \"ModifiedDateTime\": \"2026-02-20T17:25:56.170\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z394572A\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0001\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        },\n        {\n            \"Id\": 60053333,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:25:41.547\",\n            \"ModifiedDateTime\": \"2026-02-20T17:25:56.287\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z3945755\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0002\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        },\n        {\n            \"Id\": 60053357,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:25:46.463\",\n            \"ModifiedDateTime\": \"2026-02-20T17:26:05.757\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z394576D\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0003\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        },\n        {\n            \"Id\": 60053372,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:25:51.803\",\n            \"ModifiedDateTime\": \"2026-02-20T17:26:06.207\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z394577C\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0004\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        },\n        {\n            \"Id\": 60053379,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:25:55.663\",\n            \"ModifiedDateTime\": \"2026-02-20T17:26:12.187\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z3945783\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0005\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        },\n        {\n            \"Id\": 60053653,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:26:43.440\",\n            \"ModifiedDateTime\": \"2026-02-20T17:26:55.093\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z3945895\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0006\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        },\n        {\n            \"Id\": 60053691,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:26:49.563\",\n            \"ModifiedDateTime\": \"2026-02-20T17:26:59.850\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z39458BB\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0007\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        },\n        {\n            \"Id\": 60053720,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T17:26:55.953\",\n            \"ModifiedDateTime\": \"2026-02-20T17:27:14.867\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z39458D8\",\n            \"CopyDailyReportMaterials\": false,\n            \"Number\": \"0008\",\n            \"Author_Id\": null,\n            \"Date\": \"2026-02-20T00:00:00.000\",\n            \"DateShort\": \"\",\n            \"Shift\": \"\",\n            \"Notes\": \"\",\n            \"WeatherNotes\": \"\",\n            \"AddWeatherOnSave\": false,\n            \"CompanyCount\": 0,\n            \"WorkerCount\": 0,\n            \"TotalLaborUnits\": 0,\n            \"ShortLabel\": \"Daily Report: 2/20/2026\",\n            \"AppNameLabel\": \"Daily Reports\",\n            \"LongLabel\": \"Daily Report: 2/20/2026\",\n            \"DetailLabel\": \"Daily Report: 2/20/2026\",\n            \"RecycleBinLabel\": \"Daily Report: 2/20/2026\",\n            \"Name\": \"\",\n            \"LaborType\": \"\",\n            \"LaborClassification\": \"\",\n            \"StraightTime\": null,\n            \"Overtime\": null,\n            \"Total\": 0,\n            \"TotalInternalLabor\": 0,\n            \"FieldRadioButton1\": \"\",\n            \"FieldRadioButton2\": \"\",\n            \"FieldRadioButton3\": \"\",\n            \"FieldRadioButton4\": \"\",\n            \"FieldRadioButton5\": \"\",\n            \"FieldRadioButton6\": \"\",\n            \"FieldRadioButton7\": \"\",\n            \"FieldRadioButton8\": \"\",\n            \"FieldRadioButton9\": \"\",\n            \"FieldRadioButton10\": \"\",\n            \"FieldRadioButton11\": \"\",\n            \"FieldRadioButton12\": \"\",\n            \"FieldRadioButton13\": \"\",\n            \"FieldRadioButton14\": \"\",\n            \"FieldRadioButton15\": \"\",\n            \"FieldRadioButton16\": \"\",\n            \"FieldRadioButton17\": \"\",\n            \"FieldRadioButton18\": \"\",\n            \"FieldRadioButton19\": \"\",\n            \"FieldRadioButton20\": \"\",\n            \"TotalInternalWorkers\": 0,\n            \"TotalInternalStraightTimeUnits\": 0,\n            \"TotalInternalOvertimeUnits\": 0,\n            \"UniversalLookup1\": \"\",\n            \"UniversalLookup2\": \"\",\n            \"UniversalLookup3\": \"\",\n            \"UniversalLookup4\": \"\",\n            \"UniversalLookup5\": \"\"\n        }\n    ]\n}"
            }
          ]
        },
        {
          "name": "7.1.2 List Specified Contract Table",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract/60027125",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "table",
                "kahua_Contract",
                "Contract",
                "60027125"
              ]
            },
            "description": "This query lists the specific Contract you set in the call."
          },
          "response": [
            {
              "name": "7.1.2 List Specified Contract Table",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract/60027125",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "table",
                    "kahua_Contract",
                    "Contract",
                    "60027125"
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                },
                {
                  "key": "Date",
                  "value": "Fri, 20 Feb 2026 15:02:28 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "4"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;frame-ancestors 'self' https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [
                {
                  "expires": "Invalid Date",
                  "domain": "",
                  "path": ""
                }
              ],
              "body": "{\n    \"Id\": 60027125,\n    \"DomainPartitionId\": 0,\n    \"PartitionId\": 0,\n    \"CreatedDateTime\": \"2026-02-20T14:45:55.103\",\n    \"ModifiedDateTime\": \"2026-02-20T14:46:02.977\",\n    \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z393F0F5\",\n    \"Addenda\": null,\n    \"ApprovedChangesAmount\": 0,\n    \"AssignedTo\": null,\n    \"AwardDate\": null,\n    \"ClientCompany_Id\": null,\n    \"ClientCompanyLocation_Id\": null,\n    \"ClientCompanyOffice_Id\": null,\n    \"ClientContact_Id\": null,\n    \"ContractApprovedTotalValue\": 60,\n    \"ContractGrossTotalAmount\": 60,\n    \"ContractItemsTotalAmount\": 60,\n    \"ContractorCompany_Id\": null,\n    \"ContractorCompanyLocation_Id\": null,\n    \"ContractorCompanyOffice_Id\": null,\n    \"ContractorContact_Id\": null,\n    \"ContractPendingTotalValue\": null,\n    \"ContractProjectedTotalValue\": null,\n    \"ContractSignerContact_Id\": null,\n    \"CostItemsTotalTotalValue\": 60,\n    \"CurrentContractAmount\": 60,\n    \"CustomContact1_Id\": null,\n    \"CustomContact2_Id\": null,\n    \"CustomContact3_Id\": null,\n    \"CustomContact4_Id\": null,\n    \"CustomContact5_Id\": null,\n    \"CustomDate1\": null,\n    \"CustomDate2\": null,\n    \"CustomDate3\": null,\n    \"CustomDate4\": null,\n    \"CustomDate5\": null,\n    \"CustomLookup1\": null,\n    \"CustomLookup2\": null,\n    \"CustomLookup3\": null,\n    \"CustomLookup4\": null,\n    \"CustomLookup5\": null,\n    \"CustomText1\": null,\n    \"CustomText2\": null,\n    \"CustomText3\": null,\n    \"CustomText4\": null,\n    \"CustomText5\": null,\n    \"CustomUnlimitedText1\": null,\n    \"CustomUnlimitedText2\": null,\n    \"CustomUnlimitedText3\": null,\n    \"CustomUnlimitedText4\": null,\n    \"CustomUnlimitedText5\": null,\n    \"Date\": null,\n    \"DateContractRequired\": null,\n    \"DateExecuted\": null,\n    \"DateReviewed\": null,\n    \"DateSentForReview\": null,\n    \"DateSentForSignature\": null,\n    \"Description\": \"test 2\",\n    \"ExecutedChangesAmount\": null,\n    \"ExecutedChangesContractAmount\": null,\n    \"FinalCompletion\": null,\n    \"GeneralProvisions\": null,\n    \"ItemsIncludeQuantity\": false,\n    \"LiquidatedDamages\": false,\n    \"LiquidatedDamagesStartDate\": null,\n    \"LiquidatedDamagesPerDay\": null,\n    \"LiquidatedDamagesNotToExceedAmount\": null,\n    \"Notes\": null,\n    \"NoticeOfAward\": null,\n    \"NoticeOfCompletion\": null,\n    \"NotToExceedAmount\": null,\n    \"Number\": \"0002\",\n    \"NumberOfPages\": null,\n    \"OriginalContractAmount\": 60,\n    \"Parent_Id\": null,\n    \"ScheduleEnd\": null,\n    \"ScheduleStart\": null,\n    \"ScopeOfWork\": null,\n    \"Status_Id\": 58885763,\n    \"StoredMaterialRetainageRate\": null,\n    \"SubstantialCompletionActual\": null,\n    \"Type\": null,\n    \"WorkflowStatus\": \"Manually set to Approved\",\n    \"WorkPackage_Id\": null,\n    \"WorkRetainageRate\": null,\n    \"CurrencyCode\": \"USD\",\n    \"CurrencyRateId\": 2690,\n    \"CurrencyRateTypeId\": 1616,\n    \"CurrencyRateToDomain\": 1,\n    \"CurrencyRateToDocument\": 1,\n    \"CurrencyRateLastModifiedDateTime\": \"2026-02-20T14:45:55.103\",\n    \"LinkChangeOrderItemsToContractItems\": false,\n    \"CreatedBy_Id\": 24611666,\n    \"CostUnitEntryType\": \"TotalValue\",\n    \"OverbillingLimits\": \"OverbillingAllowed\",\n    \"MultiProjectItemsEnabled\": false,\n    \"MasterServiceAgreement_Id\": null\n}"
            }
          ]
        },
        {
          "name": "7.1.3 Request Items Associated with Contracts",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract.Items?where=Contract_Id=60027125",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "table",
                "kahua_Contract",
                "Contract.Items"
              ],
              "query": [
                {
                  "key": "where",
                  "value": "Contract_Id=60027125"
                }
              ]
            },
            "description": "Request the `Items` associations for the same Contract"
          },
          "response": [
            {
              "name": "7.1.3 Request Items Associated with Contracts",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract.Items?where=Contract_Id=60027125",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "table",
                    "kahua_Contract",
                    "Contract.Items"
                  ],
                  "query": [
                    {
                      "key": "where",
                      "value": "Contract_Id=60027125"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                },
                {
                  "key": "Date",
                  "value": "Fri, 20 Feb 2026 15:05:50 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "6"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;frame-ancestors 'self' https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [
                {
                  "expires": "Invalid Date",
                  "domain": "",
                  "path": ""
                }
              ],
              "body": "{\n    \"recordCount\": 2,\n    \"totalRecordCount\": 2,\n    \"records\": [\n        {\n            \"Contract_Id\": 60027125,\n            \"Items_Id\": 60027126\n        },\n        {\n            \"Contract_Id\": 60027125,\n            \"Items_Id\": 60027127\n        }\n    ]\n}"
            }
          ]
        },
        {
          "name": "7.1.4 Offsetting and Limiting Contracts",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract?offset=100&limit=500",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "table",
                "kahua_Contract",
                "Contract"
              ],
              "query": [
                {
                  "key": "offset",
                  "value": "100"
                },
                {
                  "key": "limit",
                  "value": "500"
                }
              ]
            },
            "description": "Requests the next 2 Contracts in the domain, after the first 2."
          },
          "response": [
            {
              "name": "7.1.4 Offsetting and Limiting Contracts",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract?offset=2&limit=2",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "table",
                    "kahua_Contract",
                    "Contract"
                  ],
                  "query": [
                    {
                      "key": "offset",
                      "value": "2"
                    },
                    {
                      "key": "limit",
                      "value": "2"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                },
                {
                  "key": "Date",
                  "value": "Fri, 20 Feb 2026 17:22:50 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "29"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;frame-ancestors 'self' https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [
                {
                  "expires": "Invalid Date",
                  "domain": "",
                  "path": ""
                }
              ],
              "body": "{\n    \"recordCount\": 2,\n    \"totalRecordCount\": 4,\n    \"records\": [\n        {\n            \"Id\": 60027195,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T14:46:45.820\",\n            \"ModifiedDateTime\": \"2026-02-20T14:46:53.037\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z393F13B\",\n            \"Addenda\": null,\n            \"ApprovedChangesAmount\": 0,\n            \"AssignedTo\": null,\n            \"AwardDate\": null,\n            \"ClientCompany_Id\": null,\n            \"ClientCompanyLocation_Id\": null,\n            \"ClientCompanyOffice_Id\": null,\n            \"ClientContact_Id\": null,\n            \"ContractApprovedTotalValue\": null,\n            \"ContractGrossTotalAmount\": 35,\n            \"ContractItemsTotalAmount\": 35,\n            \"ContractorCompany_Id\": null,\n            \"ContractorCompanyLocation_Id\": null,\n            \"ContractorCompanyOffice_Id\": null,\n            \"ContractorContact_Id\": null,\n            \"ContractPendingTotalValue\": 35,\n            \"ContractProjectedTotalValue\": null,\n            \"ContractSignerContact_Id\": null,\n            \"CostItemsTotalTotalValue\": 35,\n            \"CurrentContractAmount\": 0,\n            \"CustomContact1_Id\": null,\n            \"CustomContact2_Id\": null,\n            \"CustomContact3_Id\": null,\n            \"CustomContact4_Id\": null,\n            \"CustomContact5_Id\": null,\n            \"CustomDate1\": null,\n            \"CustomDate2\": null,\n            \"CustomDate3\": null,\n            \"CustomDate4\": null,\n            \"CustomDate5\": null,\n            \"CustomLookup1\": null,\n            \"CustomLookup2\": null,\n            \"CustomLookup3\": null,\n            \"CustomLookup4\": null,\n            \"CustomLookup5\": null,\n            \"CustomText1\": null,\n            \"CustomText2\": null,\n            \"CustomText3\": null,\n            \"CustomText4\": null,\n            \"CustomText5\": null,\n            \"CustomUnlimitedText1\": null,\n            \"CustomUnlimitedText2\": null,\n            \"CustomUnlimitedText3\": null,\n            \"CustomUnlimitedText4\": null,\n            \"CustomUnlimitedText5\": null,\n            \"Date\": null,\n            \"DateContractRequired\": null,\n            \"DateExecuted\": null,\n            \"DateReviewed\": null,\n            \"DateSentForReview\": null,\n            \"DateSentForSignature\": null,\n            \"Description\": \"test 3\",\n            \"ExecutedChangesAmount\": null,\n            \"ExecutedChangesContractAmount\": null,\n            \"FinalCompletion\": null,\n            \"GeneralProvisions\": null,\n            \"ItemsIncludeQuantity\": false,\n            \"LiquidatedDamages\": false,\n            \"LiquidatedDamagesStartDate\": null,\n            \"LiquidatedDamagesPerDay\": null,\n            \"LiquidatedDamagesNotToExceedAmount\": null,\n            \"Notes\": null,\n            \"NoticeOfAward\": null,\n            \"NoticeOfCompletion\": null,\n            \"NotToExceedAmount\": null,\n            \"Number\": \"0003\",\n            \"NumberOfPages\": null,\n            \"OriginalContractAmount\": 0,\n            \"Parent_Id\": null,\n            \"ScheduleEnd\": null,\n            \"ScheduleStart\": null,\n            \"ScopeOfWork\": null,\n            \"Status_Id\": 58885758,\n            \"StoredMaterialRetainageRate\": null,\n            \"SubstantialCompletionActual\": null,\n            \"Type\": null,\n            \"WorkflowStatus\": \"Manually set to Pending\",\n            \"WorkPackage_Id\": null,\n            \"WorkRetainageRate\": null,\n            \"CurrencyCode\": \"USD\",\n            \"CurrencyRateId\": 2690,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"CurrencyRateLastModifiedDateTime\": \"2026-02-20T14:46:45.820\",\n            \"LinkChangeOrderItemsToContractItems\": false,\n            \"CreatedBy_Id\": 24611666,\n            \"CostUnitEntryType\": \"TotalValue\",\n            \"OverbillingLimits\": \"OverbillingAllowed\",\n            \"MultiProjectItemsEnabled\": false,\n            \"MasterServiceAgreement_Id\": null\n        },\n        {\n            \"Id\": 60027210,\n            \"DomainPartitionId\": 0,\n            \"PartitionId\": 0,\n            \"CreatedDateTime\": \"2026-02-20T14:47:07.647\",\n            \"ModifiedDateTime\": \"2026-02-20T14:47:13.163\",\n            \"EntityLinkUrl\": \"https://devdailylaunch.kahua.com/link/H9241z393F14A\",\n            \"Addenda\": null,\n            \"ApprovedChangesAmount\": 0,\n            \"AssignedTo\": null,\n            \"AwardDate\": null,\n            \"ClientCompany_Id\": null,\n            \"ClientCompanyLocation_Id\": null,\n            \"ClientCompanyOffice_Id\": null,\n            \"ClientContact_Id\": null,\n            \"ContractApprovedTotalValue\": null,\n            \"ContractGrossTotalAmount\": 0,\n            \"ContractItemsTotalAmount\": 0,\n            \"ContractorCompany_Id\": null,\n            \"ContractorCompanyLocation_Id\": null,\n            \"ContractorCompanyOffice_Id\": null,\n            \"ContractorContact_Id\": null,\n            \"ContractPendingTotalValue\": null,\n            \"ContractProjectedTotalValue\": 0,\n            \"ContractSignerContact_Id\": null,\n            \"CostItemsTotalTotalValue\": 0,\n            \"CurrentContractAmount\": 0,\n            \"CustomContact1_Id\": null,\n            \"CustomContact2_Id\": null,\n            \"CustomContact3_Id\": null,\n            \"CustomContact4_Id\": null,\n            \"CustomContact5_Id\": null,\n            \"CustomDate1\": null,\n            \"CustomDate2\": null,\n            \"CustomDate3\": null,\n            \"CustomDate4\": null,\n            \"CustomDate5\": null,\n            \"CustomLookup1\": null,\n            \"CustomLookup2\": null,\n            \"CustomLookup3\": null,\n            \"CustomLookup4\": null,\n            \"CustomLookup5\": null,\n            \"CustomText1\": null,\n            \"CustomText2\": null,\n            \"CustomText3\": null,\n            \"CustomText4\": null,\n            \"CustomText5\": null,\n            \"CustomUnlimitedText1\": null,\n            \"CustomUnlimitedText2\": null,\n            \"CustomUnlimitedText3\": null,\n            \"CustomUnlimitedText4\": null,\n            \"CustomUnlimitedText5\": null,\n            \"Date\": null,\n            \"DateContractRequired\": null,\n            \"DateExecuted\": null,\n            \"DateReviewed\": null,\n            \"DateSentForReview\": null,\n            \"DateSentForSignature\": null,\n            \"Description\": \"test 4\",\n            \"ExecutedChangesAmount\": null,\n            \"ExecutedChangesContractAmount\": null,\n            \"FinalCompletion\": null,\n            \"GeneralProvisions\": null,\n            \"ItemsIncludeQuantity\": false,\n            \"LiquidatedDamages\": false,\n            \"LiquidatedDamagesStartDate\": null,\n            \"LiquidatedDamagesPerDay\": null,\n            \"LiquidatedDamagesNotToExceedAmount\": null,\n            \"Notes\": null,\n            \"NoticeOfAward\": null,\n            \"NoticeOfCompletion\": null,\n            \"NotToExceedAmount\": null,\n            \"Number\": \"0004\",\n            \"NumberOfPages\": null,\n            \"OriginalContractAmount\": 0,\n            \"Parent_Id\": null,\n            \"ScheduleEnd\": null,\n            \"ScheduleStart\": null,\n            \"ScopeOfWork\": null,\n            \"Status_Id\": 58885748,\n            \"StoredMaterialRetainageRate\": null,\n            \"SubstantialCompletionActual\": null,\n            \"Type\": null,\n            \"WorkflowStatus\": \"New\",\n            \"WorkPackage_Id\": null,\n            \"WorkRetainageRate\": null,\n            \"CurrencyCode\": \"USD\",\n            \"CurrencyRateId\": 2690,\n            \"CurrencyRateTypeId\": 1616,\n            \"CurrencyRateToDomain\": 1,\n            \"CurrencyRateToDocument\": 1,\n            \"CurrencyRateLastModifiedDateTime\": \"2026-02-20T14:47:07.647\",\n            \"LinkChangeOrderItemsToContractItems\": false,\n            \"CreatedBy_Id\": 24611666,\n            \"CostUnitEntryType\": \"TotalValue\",\n            \"OverbillingLimits\": \"OverbillingAllowed\",\n            \"MultiProjectItemsEnabled\": false,\n            \"MasterServiceAgreement_Id\": null\n        }\n    ]\n}"
            }
          ]
        },
        {
          "name": "7.1.5 Request ID and Type of Recently Created Entities",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract?limit=5&orderBy=CreatedDateTime&fields=Id,Type",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "table",
                "kahua_Contract",
                "Contract"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "5"
                },
                {
                  "key": "orderBy",
                  "value": "CreatedDateTime"
                },
                {
                  "key": "fields",
                  "value": "Id,Type"
                }
              ]
            },
            "description": "Requests the Id and Type of the 5 first rows of Contracts in the domain and sorts it in ascending order."
          },
          "response": [
            {
              "name": "7.1.5 Request ID and Type of Recently Created Entities",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/table/kahua_Contract/Contract?limit=5&orderBy=CreatedDateTime&fields=Id,Type",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "table",
                    "kahua_Contract",
                    "Contract"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "5"
                    },
                    {
                      "key": "orderBy",
                      "value": "CreatedDateTime"
                    },
                    {
                      "key": "fields",
                      "value": "Id,Type"
                    }
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                },
                {
                  "key": "Date",
                  "value": "Tue, 24 Feb 2026 20:40:42 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "15"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;frame-ancestors 'self' https://devweeklyservice.kahua.com https://devweeklylaunch.kahua.com https://devweeklyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [
                {
                  "expires": "Invalid Date",
                  "domain": "",
                  "path": ""
                }
              ],
              "body": "{\n    \"recordCount\": 5,\n    \"totalRecordCount\": 8,\n    \"records\": [\n        {\n            \"ID\": 60201358,\n            \"TYPE\": null\n        },\n        {\n            \"ID\": 60201363,\n            \"TYPE\": null\n        },\n        {\n            \"ID\": 60201373,\n            \"TYPE\": null\n        },\n        {\n            \"ID\": 60201382,\n            \"TYPE\": null\n        },\n        {\n            \"ID\": 60201385,\n            \"TYPE\": null\n        }\n    ]\n}"
            }
          ]
        },
        {
          "name": "7.1.6 Get Data Store Table List",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/tables",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "tables"
              ]
            },
            "description": "This endpoint allows you to pull a list of table and view names in the data store."
          },
          "response": [
            {
              "name": "7.1.6 Get Data Store Table List",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/tables",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "tables"
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                },
                {
                  "key": "Date",
                  "value": "Fri, 20 Feb 2026 19:18:11 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "8"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;frame-ancestors 'self' https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [
                {
                  "expires": "Invalid Date",
                  "domain": "",
                  "path": ""
                }
              ],
              "body": "{\n    \"recordCount\": 51,\n    \"records\": [\n        {\n            \"name\": \"AttributeDataType\"\n        },\n        {\n            \"name\": \"AttributeValueType\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Attachments\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Companies\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Equipment\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_FieldObservations\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Incidents\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_InternalLaborTracking\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_MaterialReceived\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_NotesAndWorkCompleted\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_SignatureItem\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Visitors\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Weather\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany_LaborTypes\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompanyLaborType\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportEquipment\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportEquipment_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations_FieldObservationsItems\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportIncidents\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportIncidents_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportInternalLaborTracking\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportNotesAndWorkCompleted\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportNotesAndWorkCompleted_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportSignature\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportVisitors\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportVisitors_Company\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ApprovalResults\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ChangeOrders\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Comments\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ContractExhibits\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ContractorCertifications\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ExternalReferences\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Invoices\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Items\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_OutwardReferences\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ReviewResults\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem_Comments\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem_FundItems\"\n        },\n        {\n            \"name\": \"kahua_CurrencyRate\"\n        },\n        {\n            \"name\": \"kahua_CurrencyRatePartitionRate\"\n        }\n    ]\n}"
            }
          ]
        },
        {
          "name": "7.1.7 Get Data Store Table List with Columns",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/tables?includeColumns=true",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "tables"
              ],
              "query": [
                {
                  "key": "includeColumns",
                  "value": "true"
                }
              ]
            },
            "description": "This endpoint allows you to pull a list of table and view names including columns in the data store.  \n  \n(Note: available in 2026.3)"
          },
          "response": [
            {
              "name": "7.1.7 Get Data Store Table List with Columns",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/tables",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "tables"
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                },
                {
                  "key": "Date",
                  "value": "Fri, 20 Feb 2026 19:18:11 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "8"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;frame-ancestors 'self' https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [
                {
                  "expires": "Invalid Date",
                  "domain": "",
                  "path": ""
                }
              ],
              "body": "{\n    \"recordCount\": 51,\n    \"records\": [\n        {\n            \"name\": \"AttributeDataType\"\n        },\n        {\n            \"name\": \"AttributeValueType\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Attachments\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Companies\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Equipment\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_FieldObservations\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Incidents\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_InternalLaborTracking\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_MaterialReceived\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_NotesAndWorkCompleted\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_SignatureItem\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Visitors\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Weather\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany_LaborTypes\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompanyLaborType\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportEquipment\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportEquipment_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations_FieldObservationsItems\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportIncidents\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportIncidents_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportInternalLaborTracking\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportNotesAndWorkCompleted\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportNotesAndWorkCompleted_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportSignature\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportVisitors\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportVisitors_Company\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ApprovalResults\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ChangeOrders\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Comments\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ContractExhibits\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ContractorCertifications\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ExternalReferences\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Invoices\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Items\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_OutwardReferences\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ReviewResults\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem_Comments\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem_FundItems\"\n        },\n        {\n            \"name\": \"kahua_CurrencyRate\"\n        },\n        {\n            \"name\": \"kahua_CurrencyRatePartitionRate\"\n        }\n    ]\n}"
            }
          ]
        },
        {
          "name": "7.1.8 Get Data Store Table List with Column Details",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/tables?includeColumns=true&includeColumnDetails=true",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "api",
                "v1",
                "datastore",
                "tables"
              ],
              "query": [
                {
                  "key": "includeColumns",
                  "value": "true"
                },
                {
                  "key": "includeColumnDetails",
                  "value": "true"
                }
              ]
            },
            "description": "This endpoint allows you to pull a list of table and view names including columns with details in the data store.  \n  \n(Note: available in 2026.3)"
          },
          "response": [
            {
              "name": "7.1.8 Get Data Store Table List with Column Details",
              "originalRequest": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/api/v1/datastore/tables",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "datastore",
                    "tables"
                  ]
                }
              },
              "status": "OK",
              "code": 200,
              "_postman_previewlanguage": "json",
              "header": [
                {
                  "key": "Content-Type",
                  "value": "application/json",
                  "description": "",
                  "type": "text"
                },
                {
                  "key": "Date",
                  "value": "Fri, 20 Feb 2026 19:18:11 GMT"
                },
                {
                  "key": "Cache-Control",
                  "value": "no-cache, no-store, must-revalidate"
                },
                {
                  "key": "Content-Encoding",
                  "value": "gzip"
                },
                {
                  "key": "Pragma",
                  "value": "no-cache"
                },
                {
                  "key": "Transfer-Encoding",
                  "value": "chunked"
                },
                {
                  "key": "Vary",
                  "value": "Accept-Encoding"
                },
                {
                  "key": "PlatformDuration",
                  "value": "8"
                },
                {
                  "key": "Content-Security-Policy",
                  "value": "default-src 'self' data: blob: https://*.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;font-src 'self' data: https://*.kahua.com https://*.kahuafn.com https://*.gstatic.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;script-src 'self' 'wasm-unsafe-eval' blob: https://*.kahua.com https://*.kahuafn.com www.google-analytics.com accounts.google.com www.googletagmanager.com ajax.googleapis.com cdn.auth0.com https://*.google.com https://*.syncfusion.com https://*.wistia.com https://*.wistia.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com script *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;style-src 'self' https://*.kahua.com https://*.kahuafn.com https://*.syncfusion.com https://*.googleapis.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;connect-src 'self' blob: https://*.blob.core.windows.net https://www.googleapis.com www.google-analytics.com https://*.kahua.com https://*.kahuafn.com https://apis.google.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://*.youtube.com https://*.youtube-nocookie.com https://*.vimeo.com *.cloudflare.com *.bluebeam.com *.autodesk.com *.bootstrapcdn.com *.litix.io *.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;object-src 'self' https://*.vimeo.com https://*.whatfix.com;frame-src 'self' data: *.kahua.com https://*.kahuafn.com https://*.wistia.com https://*.wistia.net https://embedwistia-a.akamaihd.net https://docs.google.com https://content.googleapis.com https://www.docusign.com https://*.wistia.com/ https://*.wistia.net/ https://*.youtube-nocookie.com https://*.vimeo.com https://*.whatfix.com https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;frame-ancestors 'self' https://devdailyservice.kahua.com https://devdailylaunch.kahua.com https://devdailyanalytics.kahua.com;form-action 'self';"
                },
                {
                  "key": "Cross-Origin-Opener-Policy",
                  "value": "same-origin-allow-popups"
                },
                {
                  "key": "Cross-Origin-Resource-Policy",
                  "value": "same-site"
                },
                {
                  "key": "Cross-Origin-Embedder-Policy",
                  "value": "require-corp"
                },
                {
                  "key": "Strict-Transport-Security",
                  "value": "max-age=31536000; includeSubDomains"
                },
                {
                  "key": "Referrer-Policy",
                  "value": "same-origin"
                },
                {
                  "key": "X-Content-Type-Options",
                  "value": "nosniff"
                }
              ],
              "cookie": [
                {
                  "expires": "Invalid Date",
                  "domain": "",
                  "path": ""
                }
              ],
              "body": "{\n    \"recordCount\": 51,\n    \"records\": [\n        {\n            \"name\": \"AttributeDataType\"\n        },\n        {\n            \"name\": \"AttributeValueType\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Attachments\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Companies\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Equipment\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_FieldObservations\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Incidents\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_InternalLaborTracking\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_MaterialReceived\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_NotesAndWorkCompleted\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_SignatureItem\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Visitors\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReport_Weather\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany_LaborTypes\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompany_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportCompanyLaborType\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportEquipment\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportEquipment_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportFieldObservations_FieldObservationsItems\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportIncidents\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportIncidents_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportInternalLaborTracking\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportMaterialsReceived_Location\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportNotesAndWorkCompleted\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportNotesAndWorkCompleted_Company\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportSignature\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportVisitors\"\n        },\n        {\n            \"name\": \"kahua_AEC_DailyReport_DailyReportVisitors_Company\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ApprovalResults\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ChangeOrders\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Comments\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ContractExhibits\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ContractorCertifications\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ExternalReferences\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Invoices\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_Items\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_OutwardReferences\"\n        },\n        {\n            \"name\": \"kahua_Contract_Contract_ReviewResults\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem_Comments\"\n        },\n        {\n            \"name\": \"kahua_Contract_ContractItem_FundItems\"\n        },\n        {\n            \"name\": \"kahua_CurrencyRate\"\n        },\n        {\n            \"name\": \"kahua_CurrencyRatePartitionRate\"\n        }\n    ]\n}"
            }
          ]
        }
      ],
      "description": "The Data Store endpoints provide a method for pulling data from the the Data Store.\n\n> \n\nNote that the data store APIs utilize oAuth for Authorization. OAuth credentials can be provisioned from within Kahua by a Kahua Domain Administrator. Please see [Authentication](https://build.kahua.com/Partners/Integration/Authentication) for more details on using OAuth."
    },
    {
      "name": "8: Data Dictionary",
      "item": [
        {
          "name": "Get Data Dictionary on several specified apps",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "",
                "value": "",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/entityschema/get?appNames={{appList}}&includereferences=true",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "v1",
                "domains",
                "{{domain}}",
                "projects",
                ":projectId",
                "entityschema",
                "get"
              ],
              "query": [
                {
                  "key": "appNames",
                  "value": "{{appList}}"
                },
                {
                  "key": "includereferences",
                  "value": "true"
                }
              ],
              "variable": [
                {
                  "key": "projectId",
                  "value": "0"
                }
              ]
            },
            "description": "Data Dictionary API calls are used to request detailed information including data types, references, labels, etc. on the hierarchical data included in apps specified in the call. This information is returned as an Excel (`.xls`) file.\n\nValues being used in this call:\n\n- **domain** - The domain key for the domain the relevant apps are installed in.\n    \n- projectId - The Project Id for the relavant apps are installed in.\n    \n- get?appNames={{**appList**}} - URL parameter that takes a comma-separated list of app names for which data is requested.\n    \n- **:includereferences** - Optional URL parameter that takes value of `true` or `false` depending on whether a column for reference apps is desired in the returned Excel file. Default value is `false`.\n    \n\nRemember to hit the arrow beside the \"**Send**\" button and click \"**Send and Download\" instead**\"**.**  \nAfter doing this, **save** the response with the extension `.xls` and view in Excel."
          },
          "response": [
            {
              "name": "Get Data Dictionary on several specified apps",
              "originalRequest": {
                "method": "GET",
                "header": [
                  {
                    "key": "",
                    "value": "",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectId/entityschema/get?appNames=kahua_Address,kahua_FundingBudget,kahua_BudgetAdjustment,kahua_BudgetChange,kahua_CompanyManager,kahua_Contract,kahua_ContractChangeOrder,kahua_ContractChangeRequest,kahua_ContractInvoice,kahua_Location,kahua_PeopleManager,kahua_Project,kahua_SOVBreakdown,kahua_SupplementalCode,kahua_WorkBreakdown&includereferences=true",
                  "protocol": "https",
                  "host": [
                    "{{envname}}service",
                    "kahua",
                    "com"
                  ],
                  "path": [
                    "v1",
                    "domains",
                    "{{domain}}",
                    "projects",
                    ":projectId",
                    "entityschema",
                    "get"
                  ],
                  "query": [
                    {
                      "key": "appNames",
                      "value": "kahua_Address,kahua_FundingBudget,kahua_BudgetAdjustment,kahua_BudgetChange,kahua_CompanyManager,kahua_Contract,kahua_ContractChangeOrder,kahua_ContractChangeRequest,kahua_ContractInvoice,kahua_Location,kahua_PeopleManager,kahua_Project,kahua_SOVBreakdown,kahua_SupplementalCode,kahua_WorkBreakdown"
                    },
                    {
                      "key": "includereferences",
                      "value": "true"
                    }
                  ],
                  "variable": [
                    {
                      "key": "projectId",
                      "value": "0"
                    }
                  ]
                }
              },
              "_postman_previewlanguage": "Text",
              "header": [],
              "cookie": [],
              "body": ""
            }
          ]
        }
      ],
      "description": "The _data dictionary_ in the Kahua wiki is a reference that lists all **apps, entity definitions, and attributes** used by the platform—primarily so you know what to use in API requests (Query, Activity, etc.).\n\n## What it is\n\nThe data dictionary is the source for:\n\n- **App names**\n    \n- **EntityDefs (entity definitions)**\n    \n- **Attribute paths**\n    \n\nThese are required when calling APIs like `/query` or `/activities`."
    },
    {
      "name": "99: Miscellaneous",
      "item": [
        {
          "name": "99.1.1 Portable View Render/Download",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "",
                "value": "",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://{{envname}}service.kahua.com/v1/domains/{{domain}}/projects/:projectid/entities/:entityid/portableviews/:DefaultReportName/render",
              "protocol": "https",
              "host": [
                "{{envname}}service",
                "kahua",
                "com"
              ],
              "path": [
                "v1",
                "domains",
                "{{domain}}",
                "projects",
                ":projectid",
                "entities",
                ":entityid",
                "portableviews",
                ":DefaultReportName",
                "render"
              ],
              "variable": [
                {
                  "key": "projectid",
                  "value": "0"
                },
                {
                  "key": "entityid",
                  "value": "61128077"
                },
                {
                  "key": "DefaultReportName",
                  "value": "kahua_PurchaseOrder.PurchaseOrderViewReport"
                }
              ]
            },
            "description": "Renders a specified portable view for an entity and streams the resulting file (e.g., PDF) in the HTTP response. This endpoint acts as both a render trigger and download mechanism in a single request."
          },
          "response": []
        }
      ]
    }
  ],
  "auth": {
    "type": "oauth2",
    "oauth2": [
      {
        "key": "clientSecret",
        "value": "{{ClientSecret}}",
        "type": "string"
      },
      {
        "key": "clientId",
        "value": "{{ClientID}}",
        "type": "string"
      },
      {
        "key": "accessTokenUrl",
        "value": "https://{{envname}}service.kahua.com/oauth2/token",
        "type": "string"
      },
      {
        "key": "grant_type",
        "value": "client_credentials",
        "type": "string"
      },
      {
        "key": "tokenName",
        "value": "Kahua OAuth 2.0 Token",
        "type": "string"
      },
      {
        "key": "addTokenTo",
        "value": "header",
        "type": "string"
      }
    ]
  },
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "packages": {},
        "requests": {},
        "exec": [
          ""
        ]
      }
    },
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "packages": {},
        "requests": {},
        "exec": [
          ""
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "kpc-seed-marker",
      "value": ""
    },
    {
      "key": "kpc-seed-contact-id",
      "value": ""
    },
    {
      "key": "kpc-seed-contact-firstName",
      "value": ""
    },
    {
      "key": "kpc-seed-contact-lastName",
      "value": ""
    },
    {
      "key": "kpc-seed-contact-email",
      "value": ""
    },
    {
      "key": "kpc-seed-company",
      "value": ""
    },
    {
      "key": "kpc-seed-office",
      "value": ""
    },
    {
      "key": "kpc-seed-root",
      "value": ""
    },
    {
      "key": "kpc-seed-3.2.1-folder",
      "value": ""
    },
    {
      "key": "kpc-seed-3.2.5-folder",
      "value": ""
    },
    {
      "key": "kpc-seed-3.2.6-source",
      "value": ""
    },
    {
      "key": "kpc-seed-3.2.6-dest",
      "value": ""
    },
    {
      "key": "kpc-seed-3.2.7-folder",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.5-dest",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.6-dest",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.13-folder",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.1-file",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.4-file",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.5-file",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.6-file",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.7-file",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.9-fileA",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.9-fileB",
      "value": ""
    },
    {
      "key": "kpc-seed-3.1.10-file",
      "value": ""
    },
    {
      "key": "kpc-seed-2.1.2-id",
      "value": ""
    },
    {
      "key": "kpc-seed-2.1.3-id",
      "value": ""
    },
    {
      "key": "kpc-seed-2.2.1-id",
      "value": ""
    },
    {
      "key": "kpc-seed-1.2.3-id",
      "value": ""
    },
    {
      "key": "kpc-seed-isoTime",
      "value": ""
    },
    {
      "key": "kpc-4.2.1-id",
      "value": ""
    },
    {
      "key": "kpc-4.1.2-id",
      "value": ""
    },
    {
      "key": "envname",
      "value": ""
    },
    {
      "key": "domain",
      "value": ""
    },
    {
      "key": "password",
      "value": ""
    },
    {
      "key": "username",
      "value": ""
    },
    {
      "key": "kpc-4.3.4-id",
      "value": ""
    },
    {
      "key": "kpc-4.4.1-id",
      "value": ""
    }
  ]
}